Closed JasonYao closed 5 years ago
For setting default behavior of git commands, use https://git-scm.com/docs/git-config
For setting new aliases (e.g. git track
and git untrack
), use git aliases
:tada: This issue has been resolved in version 1.0.0 :tada:
The release is available on GitHub release
Your semantic-release bot :package::rocket:
Git branch sorting (change this so it's the default behavior)
The following alias enables an ordering of git branches so the freshest (latest) git branches are at the bottom (really helpful if there's a lot of branches, and the naming convention is by lexicographical sorting by default, which puts jyao/JIRA-111 right after jyao/JIRA-11)
The goal is now to change it so that if I run
git branch
then it will sort by committerdate by defaultGit file untracking
When a file is tracked in git but I don't want additional stuff to be tracked, the following command will make it so that it doesn't show up in
git status
:To undo this operation and begin tracking, there is:
The goal is to add in a git alias
git untrack
andgit track
to make this a bit more convenient