diff options
Diffstat (limited to 'config/git')
-rw-r--r-- | config/git/gitconfig | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/config/git/gitconfig b/config/git/gitconfig index 976d768..bf61c21 100644 --- a/config/git/gitconfig +++ b/config/git/gitconfig @@ -1,9 +1,29 @@ [init] defaultBranch = master + [pager] branch = false + [alias] - pushall = !git remote | xargs -L1 git push --all + a = add + br = branch + ci = commit + co = checkout + df = diff + ds = diff --staged + st = status + pushall = "!for r in $(git remote); do git push --all \"$r\"; done" + [user] email = suleyman@farajli.net name = Suleyman Farajli + # signingkey = <to be set manually> + +[commit] + gpgSign = true + +[tag] + gpgSign = true + +[gpg] + format = openpgp |