Skip to content

Instantly share code, notes, and snippets.

@inceabdullah
Last active August 17, 2023 08:26
Show Gist options
  • Save inceabdullah/7b719997e104f9389dd5519310d6ccb2 to your computer and use it in GitHub Desktop.
Save inceabdullah/7b719997e104f9389dd5519310d6ccb2 to your computer and use it in GitHub Desktop.
Most Useful Git Aliases
#Git
alias ga='git add'
alias gc='git commit -m'
alias gca='git commit -am'
alias gcam='git commit --amend -m'
alias gf='git fetch'
alias gb='git branch -av'
alias glo='git log --oneline'
alias gp='git push'
alias gst='git status'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment