diff options
author | Süleyman Fərəcli <suleyman@farajli.net> | 2025-06-19 01:19:02 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-19 01:19:02 +0400 |
commit | 4d14ace3c5180ec0827408c1222cb35fe27cf484 (patch) | |
tree | 5e0caad138af71bdb2d9c524b0f6fff87eee4443 /config/git | |
parent | 1eb90cf48629b8dfc0182cbe38b34c8082f4dc40 (diff) | |
parent | 4210338b4166f8f1c16bf30e72a69e11c098eea8 (diff) |
Merge pull request #9 from sfarajli/dev
Dev
Diffstat (limited to 'config/git')
-rw-r--r-- | config/git/gitconfig | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/config/git/gitconfig b/config/git/gitconfig index 976d768..8a69554 100644 --- a/config/git/gitconfig +++ b/config/git/gitconfig @@ -1,9 +1,26 @@ [init] defaultBranch = master + [pager] branch = false + [alias] - pushall = !git remote | xargs -L1 git push --all + co = checkout + br = branch + ci = commit + 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 |