Last active
May 3, 2019 06:37
-
-
Save devben/4d6d7d717bde31dd446ea0785783273a to your computer and use it in GitHub Desktop.
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
[push] | |
default = simple | |
[alias] | |
tree = log --graph --full-history --all --color --date=short --pretty=format:\"%Cred%x09%h %Creset%ad%Cblue%d %Creset %s %C(bold)(%an)%Creset\" | |
co = checkout | |
s = status | |
b = branch | |
cm = commit -m | |
add-cm = "!git add -A && git commit -m" | |
p = pull --rebase | |
rh = reset --hard | |
cod = checkout develop | |
red = rebase develop | |
mb = "!git merge-base `git rev-parse --abbrev-ref HEAD` develop" | |
sq = "!git rebase -i `git mb`" | |
mbm = "!git merge-base `git rev-parse --abbrev-ref HEAD` master" | |
sqm = "!git rebase -i `git mbm`" | |
rem = rebase master | |
po = push origin +HEAD | |
loglast30 = "!git log --since='30 day ago' --name-only --pretty=format: | sort | uniq" | |
loglast3 = "!git log --since='3 day ago' --name-only --pretty=format: | sort | uniq" | |
[pull] | |
rebase = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment