This commit is contained in:
bash
2024-08-12 19:38:48 +00:00
parent d6bd536d0f
commit e677c95d36
15 changed files with 94 additions and 0 deletions

5
scripts/git-alias.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
# Alias GIT (git lg for git commits, git ls for commits with changed files)
git config --global alias.lg 'log --graph --abbrev-commit --decorate --date=relative --all'
git config --global alias.ls 'log --stat --pretty=short --graph'