Added git co alias

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
Marcus Noble 2022-03-28 10:51:53 +01:00
parent e918596757
commit 843e1c6d20
Signed by: AverageMarcus
GPG Key ID: B8F2DB8A7AEBAF78
1 changed files with 3 additions and 0 deletions

View File

@ -61,6 +61,9 @@ git() {
elif [ "$1" = "commit" ]; then # Sign all commits
shift
_git commit -s $@
elif [ "$1" = "co" ]; then # Sign all commits
shift
_git checkout -b $@
else
_git $@
fi