gitconfig: add git aliases for often used git commands
This commit is contained in:
parent
b40d85d559
commit
9ee419ebc5
1 changed files with 15 additions and 0 deletions
15
gitconfig
15
gitconfig
|
|
@ -5,3 +5,18 @@
|
||||||
editor = vim
|
editor = vim
|
||||||
[commit]
|
[commit]
|
||||||
verbose = true
|
verbose = true
|
||||||
|
[alias]
|
||||||
|
a = add
|
||||||
|
ap = add -p
|
||||||
|
br = branch
|
||||||
|
ca = commit --amend
|
||||||
|
c = commit
|
||||||
|
co = checkout
|
||||||
|
d = diff
|
||||||
|
ds = diff --staged
|
||||||
|
f = fetch
|
||||||
|
g = grep
|
||||||
|
p = push
|
||||||
|
s = status
|
||||||
|
st = status
|
||||||
|
t = tag
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue