git
Reverting a single file to a specific commit
> git log -p filename> git checkout [hash] -- path/to/fileUseful commands
Remove local branches that have been deleted in the remote repository
Temporarily ignoring files
git update-index --assume-unchanged <file>git update-index --no-assume-unchanged <file>Undo the last commit but keep the changes
Check in changes in filename casing
Last updated