https://github.com/shaishavgandhi/git-alias
Aliases for common Git commands
https://github.com/shaishavgandhi/git-alias
Last synced: 7 months ago
JSON representation
Aliases for common Git commands
- Host: GitHub
- URL: https://github.com/shaishavgandhi/git-alias
- Owner: ShaishavGandhi
- Created: 2018-12-26T18:44:46.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-26T18:46:41.000Z (almost 7 years ago)
- Last Synced: 2025-01-30T06:41:31.642Z (8 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# git-alias
Aliases for common Git commands### Paste these into you .bashrc file
```bash
alias status = "git status"
alias log = "git log"
alias stash = "git stash"
alias checkout = "git checkout"
alias commit = "git commit"
alias push = "git push -u"
alias pull = "git pull"
alias diff = "git diff"
alias branch = "git checkout -b"
alias add-all = "git add --all"
alias add = "git add"
alias switch = "git checkout -"
```