git
Pull from upstream
git pull upstream masterAdd all modified files
git add -uAdd new files
git add .Add deleted files
git add .Add everything except one thing
git add .
git reset your/file.jsMake an additional commit on the most recent one, without making a new commit
Make changes you want locally
git add -u
git commit --amend --no-edit
git push origin -f 4704-featureMerge changes from one branch to another
Squash all commits into one commit
Delete all local branches except master
Delete a branch
Rename a branch
Uncommit last commit
Nuking a commit
Remove a commit inside the git log
Set up multiple users:
Setting up Multiple Git Configs
Migrate a repo from bitbucket to git
Submodules
Last updated