|
You are here |
nalanj.dev | ||
| | | | |
arnorhs.dev
|
|
| | | | | We use git as our versioning tool at work and I've gradually been learning a few tricks on how to speed up my development time and time spent managing my repo. When jumping between branches, continuing your work from where you stopped last time, etc., you very often open the same files as you were editing in a previous commit. This may not be a problem if you use something like Command-T for vim or rely on the file browsing in TextMate, but often it might just be quicker to open all the files from a part... | |
| | | | |
www.aaron-gray.com
|
|
| | | | | You can run rubocop on just a local branches' changes like this: git fetch && git diff-tree -r --no-commit-id --name-only master@{u} head | xargs ls -1 2>/dev/null | xargs rubocop --force-exclusion Then you can create 2 corresponding aliases in your terminal .rc file to make this easy to remember: # Alias to run rubocop on the current branch's diff from [...] | |
| | | | |
codeinthehole.com
|
|
| | | | | Git aliases for grabbing Github links | |
| | | | |
www.chriswarbo.net
|
|
| | | |||