Please enable JavaScript.
Coggle requires JavaScript to display documents.
git (undoing changes (git reset (https://git-scm.com/book/en/v2/Git-Tools…
git
undoing changes
git checkout
https://www.atlassian.com/git/tutorials/undoing-changes
'detached HEAD' state.
git clean
https://www.atlassian.com/git/tutorials/undoing-changes/git-clean
git revert
https://www.atlassian.com/git/tutorials/undoing-changes/git-revert
git reset
https://git-scm.com/book/en/v2/Git-Tools-Reset-Demystified
checkout vs reset, --soft, --mixed, --hard
https://www.atlassian.com/git/tutorials/undoing-changes/git-reset
git rm
git log
summary
https://www.atlassian.com/git/tutorials/undoing-changes
saving changes
git add
git commit
git diff
git stash
.gitignore
using branches
git branch
git checkout
git merge
https://www.atlassian.com/git/tutorials/using-branches/git-merge
merge conflicts
https://www.atlassian.com/git/tutorials/using-branches/git-merge
syncing
git push
https://www.atlassian.com/git/tutorials/syncing/git-push
https://help.github.com/articles/dealing-with-non-fast-forward-errors/
git fetch
git pull
git remote
https://www.atlassian.com/git/tutorials/syncing
basic terms
how it works?
INDEX
HEAD
working directory
branch ref
refer git reset
local master/ origin master
refer git push
base
rewriting history
git rebase/ git rebase -i
https://www.atlassian.com/git/tutorials/rewriting-history/git-rebase
git reflog
git commit -amend
inspecting a repo
git status
git tag
git blame
setting up a repo
git init
git clone
git config
advanced
merging vs rebasing