git
Git is used for version control.
branch
List local branches:
git branchList remote and local branches:
git branch -alog
git log --oneline
git log -2
git log -p -2
git diff
git diff file_name
git blame file_name
git remote show originclean
git clean -f
git clean -df
git checkout -- .
git rest HEAD file_nametags
git pull --tags
git checkout tag
git tag
git tag -a tag -m "tag message"
git push --tagsstash
git stash save "stash" && git stash
git stash list
git stash pop