Lists all files for the last commit (HEAD)
git show --name-only --oneline HEADDelete a remote git tag
git tag -d v1.0.0
git push origin :refs/tags/v1.0.0Fetch remote git tags only
git fetch --tagsPush remote git tags only
git push origin --tagsCreate remote name (for example: origin)
git remote add origin http://github.com/repo.gitShow the last commit
git log -1 HEADShow the last commit hash in short version
git rev-parse --short HEADDelete the last commit from HEAD
git reset --hard HEAD~1Pull down one commit worth of historical data
git clone --depth=1 https://github.com/angular/angular-seed.git <your-project-name>Clone and switch from one specific remote branch
git checkout -b gh-pages origin/gh-pagesUnstage all files
git reset .