--- a/dotcss/news.ycombinator.com.css Wed Feb 19 15:49:21 2014 -0500
+++ b/dotcss/news.ycombinator.com.css Thu Feb 20 15:55:57 2014 -0500
@@ -1,2 +1,1 @@
-.subtext > a + a + a { display: none; }
--- a/gitconfig Wed Feb 19 15:49:21 2014 -0500
+++ b/gitconfig Thu Feb 20 15:55:57 2014 -0500
@@ -80,6 +80,7 @@
; Find all commits in the given ref that aren't also in master
; TODO: Make this take a second optional argument
find-unmerged-commits = "!sh -c 'git log $1 --format='''%H''' --not master --' -"
+ find-unmerged-commits-for = "!sh -c 'git log $1 --format='''%H''' --not $2 --' -"
; ksdiff is the bare kaleidoscope difftool alias
; ksdiffid is the one that expects $KSID to be set
@@ -97,6 +98,7 @@
; merged into master, and opens them one-by-one with ksshow. It's good for
; reviewing pull requests.
ksreview = "!sh -c 'git find-unmerged-commits $1 | xargs -n1 git ksshow' -"
+ ksreviewfor = "!sh -c 'git find-unmerged-commits-for $1 $2 | xargs -n1 git ksshow' -"
sl = "!sh -c 'git show --color=always $1 | less -R' -"