How to
Push
Push to a remote specific branch
git push upstream develop:dev-masterPush ignoring verify or hooks
git push github develop:master --no-verifyIgnore all files in this folder
*
!.gitignoreGet current branch
git branch --show-currentCache
Clear Entire Git Cache
Cache user and password
Stash
Stash including untracked files
Stash only file or folder
Revert
Revert files from a specific hash commit
Revert to a specific commit
Reset
Reset Permissions
Use globally
Reset by time
Undo the last commit
Rename
Rename your branch
Logs
Find versioned files
View git logs of just one author commits
View git logs of many authors commit
Exclude git commits log from one or more author
Proxy bypass to specific host
Fixing wrong commit messages
Deleting remote branches
Keeping a fork up to date
Clone your fork:
Add remote from the original repository in your forked repository:
Updating your fork from the original repo to keep up with their changes:
How to use prune to Clean Up remote branches
Using "prune" on a Remote Repository
Tags
Create and tag with a message
Last updated