A bunch of alias settings that improve using experience for git
/bin/bash -c "$(curl -fsSL https://github.com/macrox/git-alias/raw/master/main.sh)"Or
git clone https://github.com/macrox/git-alias.git
cd git-alias
sh main.shAs same as git status
git stAs same as git checkout
git co existing-branch
git co -b new-branchAs same as git commit
git ci
git ci -m "chore: Commit with message"As same as git branch
git br
git br -D useless-branchAs same as git reset HEAD.
Unstage uncommit changes of specified file(s)
git unstage .
git unstage specified-fileAs same as git log -l
Show last commit log
git llShow pretty log
git lg