My Nix Infra
nix nixos
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add git commit alias as git commit -s

ydcjeff 87a2bf92 c75e31a5

+5 -1
+1 -1
config/fish/abbr.fish
··· 26 26 # git shortcuts 27 27 abbr -a gs "git status" 28 28 abbr -a ga "git add" 29 - abbr -a gc "git commit -m" 29 + abbr -a gc "git commit" 30 30 abbr -a gb "git branch" 31 31 abbr -a gd "git diff" 32 32 abbr -a gcl "git clone"
+4
config/git/config
··· 1 + [alias] 2 + commit = commit -s 3 + 1 4 [commit] 2 5 gpgSign = true 6 + verbose = true 3 7 4 8 [color] 5 9 ui = true