# HG changeset patch # User Steve Losh # Date 1392929757 18000 # Node ID d6b09d11fdb8f2ee236e0007ca5114189a0f7dd4 # Parent 1e885626f65626c1324ff9cdf38e54ea9f7a2506 for diff -r 1e885626f656 -r d6b09d11fdb8 dotcss/news.ycombinator.com.css --- 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; } diff -r 1e885626f656 -r d6b09d11fdb8 gitconfig --- 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' -"