mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 10:26:42 +00:00
21 lines
338 B
Bash
Executable File
21 lines
338 B
Bash
Executable File
#
|
|
# Git
|
|
#
|
|
|
|
# Aliases
|
|
alias g="git"
|
|
alias gi="git"
|
|
alias ga="git add"
|
|
alias gb="git branch"
|
|
alias gc="git checkout"
|
|
alias gcb="git checkout -b"
|
|
alias gr="git remote"
|
|
alias gs="git status"
|
|
alias gai="git add -i"
|
|
alias gp="git push"
|
|
alias gf="git fetch"
|
|
alias gd="git difftool"
|
|
alias gpl="git pull --rebase"
|
|
alias gix="gitx"
|
|
alias gx="gitx"
|