Hi folks, Sometimes I just want to surf through a project's history, getting a sense of where I was over time. So I wrote these short scripts to let me do that easily: cg-prev: cg-seek `cg-log | grep "^commit " | head -n 2 | tail -n 1 | cut -d ' ' -f 2` cg-next: CURRENT=`cg-log | grep "^commit " | head -n 1` cg-seek > /dev/null cg-seek `cg-log | grep "^commit " | grep -B 1 "^$CURRENT" | head -n 1 | cut -d ' ' -f 2` Even better, I guess would be to be able to do something like this: $ cg-seek next $ cg-seek prev and have it do the right thing. Be well, Zack -- Zack Brown - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Fri Oct 14 00:39:43 2005
This archive was generated by hypermail 2.1.8 : 2005-10-14 00:39:48 EST