links for 2009-03-31
Mar 31, 2009 in Bookmarks
random writings by Derek Sozou
Mar 30, 2009 in Webdev
Update local copy from github.com
git fetch origin
Update your local branch with origin/master, then replay your changes
git rebase origin/master
Commit changes
git commit -m "First import"
Send your commits to github.com
git push origin
On Ubuntu use GCT for commits
sudo apt-get install commit-tool
On OSX GITX INSTEAD
Mark all changes for commit
git add .
Commit your changes locally
git commit
Mar 29, 2009 in Bookmarks