Last active
December 21, 2015 02:38
-
-
Save alexkingorg/6236020 to your computer and use it in GitHub Desktop.
Some gitconfig aliases. #git
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
up = "pull --rebase" | |
pullmerge = "pull --no-rebase" | |
subup = "!f() { git submodule sync; git submodule update --init --recursive; }; f" | |
subreset = "submodule foreach 'git reset --hard HEAD'" | |
who = shortlog -s -- | |
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative | |
info = remote -v | |
incoming = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' ..@{u}) | |
outgoing = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' @{u}..) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What does incoming and outoing do?
Nothing displays on my screen.