An open API service indexing awesome lists of open source software.

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

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 -"
```