Hacker News new | ask | show | jobs
by literalusername 5251 days ago
That looks useful, but some comments would be nice. What do u, ud, and prep do?
1 comments

`git u $branch` checks out $branch, updates it against whatever remote it's synced to, and then attempts to rebase the current branch against it. `git ud $branch` does the same think, except it also performs the merge of the current branch onto $branch.

`git prep` Simply greps the commit for use of Python/JS print debugging statements, things that shouldn't make it into the codebase.