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
| function addNicks() { | |
| $(".message_sender").map(function() { | |
| var name = $(this).data("x-name"); | |
| if (!name) { | |
| name = $(this).text(); | |
| $(this).data("x-name", name); | |
| } | |
| var href = $(this).attr("href"); | |
| if (href) { | |
| var nick = href.slice(6); |
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
| [alias] | |
| find = !sh -c 'git ls-files |grep --color=auto -i "$@" |less -FRSX' - | |
| fixup = "!f() { TARGET=$(git rev-parse "$1"); git commit --fixup=$TARGET ${@:2} && EDITOR=true git rebase -i --autostash --autosquash $TARGET^; }; f" | |
| squash = "!f() { TARGET=$(git rev-parse "$1"); git commit --squash=$TARGET ${@:2} && git rebase -i --autostash --autosquash $TARGET^; }; f" | |
| ri = rebase --interactive --autosquash --autostash | |
| lt = log --graph --pretty=changes | |
| ll = log --numstat --pretty=changes | |
| ds = diff --staged | |
| ego = shortlog -s -n --no-merges | |
| pr = pull-request |
OlderNewer