We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
git add-commit
1 parent 8f8fb96 commit 3877da9Copy full SHA for 3877da9
1 file changed
home/.gitconfig
@@ -22,6 +22,11 @@
22
# Source for this `git lg` "better git log" alias: https://coderwall.com/p/euwpig/a-better-git-log
23
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
24
25
+ # See:
26
+ # 1. [original source] https://stackoverflow.com/a/4299159/4561887
27
+ # 1. [my answer] https://stackoverflow.com/a/71150235/4561887
28
+ add-commit = !git add -A && git commit
29
+
30
# For 'git blametool'. See: "eRCaGuy_dotfiles/useful_scripts/git-blametool.sh".
31
# Example:
32
# - Create an entry below with: `git config --global blametool.editor subl`
0 commit comments