We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A dead simple git cheatsheet. Follow @tiivik for updates!
git branch
git branch -a
git checkout -b branch_name
git checkout branch_name
git push origin branch_name
git branch -m new_name
git branch -d branch_name
git push origin :branch_name
git log --oneline
git log -2
git log -p -2
git diff
git diff myfile
git blame myfile
git remote show origin
git clean -f
git clean -df
git checkout -- .
git reset HEAD myfile
git pull --tags
git checkout tag_name
git tag
git tag -a tag_name -m "tag message"
git push --tags
git stash save "stash name" && git stash
git stash list
git stash pop
https://gitsheet.wtf/?ref=producthunt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A dead simple git cheatsheet. Follow @tiivik for updates!
git branch
git branch -a
git checkout -b branch_name
git checkout branch_name
git push origin branch_name
git branch -m new_name
git branch -d branch_name
git push origin :branch_name
git log --oneline
git log -2
git log -p -2
git diff
git diff myfile
git blame myfile
git remote show origin
git clean -f
git clean -df
git checkout -- .
git reset HEAD myfile
git pull --tags
git checkout tag_name
git tag
git tag -a tag_name -m "tag message"
git push --tags
git stash save "stash name" && git stash
git stash list
git stash pop
https://gitsheet.wtf/?ref=producthunt
The text was updated successfully, but these errors were encountered: