Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Git alias to list commits ahead/behind tracking branch
There was only the `lnew` alias that lists commit behind `ORIG_HEAD` (1) which only works after a solved merge conflict. This is not very useful and has been replaced by two new aliases: - `lahead` - Lists all commits the current branch is ahead of the tracked origin branch that have not been pushed yet. - `lbehind` - Lists all ahead commits of the tracked origin branch that are not merged into the current branch yet. References: (1) https://git-scm.com/docs/gitrevisions#gitrevisions Resolves GH-180
- Loading branch information