Last active
January 30, 2021 20:22
-
-
Save mitsuhiko/412f4aa1af6b590deb4b to your computer and use it in GitHub Desktop.
Adds the ultimate of all pull request commands to git
This file contains hidden or 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
| # Alternatively don't use slog but something else. I just like that more. | |
| [aliases] | |
| slog = log --pretty=format:"%C(auto,yellow)%h%C(auto)%d\\ %C(auto,reset)%s\\ \\ [%C(auto,blue)%cn%C(auto,reset),\\ %C(auto,cyan)%ar%C(auto,reset)]" | |
| addprx = "!f() { b=`git symbolic-ref -q --short HEAD` && \ | |
| git fetch origin pull/$1/head:pr/$1 && \ | |
| git fetch -f origin pull/$1/merge:PR_MERGE_HEAD && \ | |
| git rebase --onto $b PR_MERGE_HEAD^ pr/$1 && \ | |
| git branch -D PR_MERGE_HEAD && \ | |
| git checkout $b && echo && \ | |
| git diff --stat $b..pr/$1 && echo && \ | |
| git slog $b..pr/$1; }; f" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you! I couldn't get mine to work with
[aliases]so I switched to[alias]. Thank you again! Huge time saver.