gitfaq
gitfaq copied to clipboard
organized git faq
The difference between --ammend and --ammend -o is not clear here. `` --amend without other options combines the currently staged changes with the last commit `` ``To update the last...
Sometimes you want to edit a file that is already tracked in your repo, but you don't want those changes to be committed: ``` git update-index --assume-unchanged ``` If you...
eg `git submodule foreach --recursive git reset --hard`
What is cherry picking and how can it be used?