Mercurial > hg > zsh-env
annotate .gitconfig @ 180:bfc94ec31b2b
allow a local include in .gitconfig
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Tue, 04 Aug 2020 11:20:15 +0200 |
parents | abe96094c876 |
children |
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 |
124
abe96094c876
add an alias for sorted tags
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
119
diff
changeset
|
10 tags = tag --list --sort=version:refname |
100 | 11 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
|
12 wt = worktree |
100 | 13 |
14 [color] | |
15 ui = false | |
16 | |
17 [http] | |
18 sslVerify = false | |
19 | |
180
bfc94ec31b2b
allow a local include in .gitconfig
Dirk Olmes <dirk.olmes@codedo.de>
parents:
124
diff
changeset
|
20 [include] |
bfc94ec31b2b
allow a local include in .gitconfig
Dirk Olmes <dirk.olmes@codedo.de>
parents:
124
diff
changeset
|
21 path = ~/.gitconfig.local |
bfc94ec31b2b
allow a local include in .gitconfig
Dirk Olmes <dirk.olmes@codedo.de>
parents:
124
diff
changeset
|
22 |
100 | 23 [push] |
24 default = simple | |
25 | |
26 [user] | |
27 name = Dirk Olmes | |
28 # do not set an email address here - it must be configured for different | |
29 # repositories with different values |