g git gst git status gd git diff gl git pull gup git pull –rebase gp git push gd git diff gc git commit -v gc! git commit -v –amend gca git commit -v -a gca! git commit -v -a –amend gco git checkout gcm git checkout master gr git remote grv git remote -v […]
Git Workflow – Lynda/Skoglund
KS git checkout master git pull git fetch git merge origin/master git checkout -b feedback_form git add feedback.html git commit -m “Add customer feedback form” git fetch git push -u origin feedback_form LDC git checkout master git pull git checkout -b feedback_form origin/feedback_form git log git show 84j34df8 git commit -am “Add something else to […]
iTerm2 + numpad fix
This shit was driving me batty. The numeric keypad is in application keypad mode. To fix it, go to preferences->profiles->keys->load preset… and choose “xterm with Numeric Keypad”
Remove all those pesky ._ files
I need to learn why it happens, but copying files from Mountain Lion to my Linux box results in an assload of “._” files. Removing them from the command line was getting frustrating. This helped; find . -iname ‘._*’ -delete
Getting Started with Node.js on Mac OS X
Straight from here. Thanks, Jason. This is a step-by-step process on installing Node.js on Mac OS X. There are several “getting started” tutorials online but I didn’t find much on Mac OS X. The ones I did find were a little confusing since I had no previous experience with Node.js. At the time of this […]
WordPress Images Linking to Themselves
I’m sure it’s happened to you. You’re checking out someone’s website. It looks good. Nice images. Oh, this one’s a link! I wonder where it goes? Oh. It’s the same picture I was just looking at, only now it’s the only thing on the damn page. I don’t like it either, but it’s easy to […]