git clone git@github.com:blippy/tacc.git
git push. If you get an error message like
You can't push to git://github.com/user/repo.git, then you need to edit .git/config so that the url line reads:
url = git@github.com:blippy/tacc.git
Other git hosts to consider: gitorious.org repo.or.cz repopular.com
External links:
gh-pages - discussion thread on Google Groups started by me
about how to generate web pages for Github.
grancher looks like a good solution.
Status - updates at Github's own site
Twitter - status messages
To merge from another branch (e.g. exp) to the current branch: git merge exp
Then, to delete the exp branch: git branch -d exp
git format-patch master --stdout > fix_empty_poster.patch
git format-patch master
git diff master
git pushFor example, if you want to push your local dev branch, do
git push origin devIf you wanted to delete the remote branch, type:
git push origin :dev
git checkout FILE1 ...
git tag
git tag -a v1.4 -m 'version 1.4'
git push --tags
git checkout $tagname. When you've finished, go back to whatever branch you were working on before: git checkout master
Author: Mark Carter Created: 13-Nov-2010 Updated: 23-Nov-2010