Mercurial > hg > zsh-env
annotate .gitconfig @ 119:b81b0cd81f63
add a git alias for handling submodules
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Thu, 18 May 2017 07:41:08 +0200 |
parents | 78a2cec44799 |
children | abe96094c876 |
rev | line source |
---|---|
100 | 1 [alias] |
2 brach = branch | |
3 branches = branch | |
4 co = checkout | |
5 comit = commit | |
6 lg = log --format=oneline --graph --abbrev-commit --decorate | |
7 rpo = remote prune origin | |
119
b81b0cd81f63
add a git alias for handling submodules
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
115
diff
changeset
|
8 smu = submodule update --recursive --remote |
100 | 9 st = status |
10 wipe = !git add -A && git commit -qm 'WIPE SAVEPOINT' && git reset HEAD~1 --hard | |
115
78a2cec44799
add an alias for worktree
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
100
diff
changeset
|
11 wt = worktree |
100 | 12 |
13 [color] | |
14 ui = false | |
15 | |
16 [http] | |
17 sslVerify = false | |
18 | |
19 [push] | |
20 default = simple | |
21 | |
22 [user] | |
23 name = Dirk Olmes | |
24 # do not set an email address here - it must be configured for different | |
25 # repositories with different values |