d6b09d11fdb8

for
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Thu, 20 Feb 2014 15:55:57 -0500
parents 1e885626f656
children 957e7c0065e9
branches/tags (none)
files dotcss/news.ycombinator.com.css gitconfig

Changes

--- 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' -"