Check out my first novel, midnight's simulacra!
Git: Difference between revisions
From dankwiki
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[http://git.or.cz/course/svn.html Here's] a good crash course for [[subversion]] users. [http://github.com GitHub] provides pretty reasonable git hosting services; open source projects eat free. | [http://git.or.cz/course/svn.html Here's] a good crash course for [[subversion]] users. | ||
==Hosting== | |||
* [http://github.com GitHub] provides pretty reasonable git hosting services; open source projects eat free. | |||
* [http://wiki.github.com/davglass/github-trac github-trac] is a trac extension for working with GitHub | |||
==Configuration== | ==Configuration== | ||
Line 15: | Line 19: | ||
==Links== | ==Links== | ||
* Tv's "[http://eagain.net/articles/git-for-computer-scientists/ Git for Computer Scientists]" | * Tv's "[http://eagain.net/articles/git-for-computer-scientists/ Git for Computer Scientists]" | ||
* tpope's "[http://www.tpope.net/node/106 Note About Git Commit Messages]" (2008-04-19) | |||
* GitWiki's [http://git.or.cz/gitwiki/GitTips GitTips] |
Revision as of 09:31, 15 November 2009
Here's a good crash course for subversion users.
Hosting
- GitHub provides pretty reasonable git hosting services; open source projects eat free.
- github-trac is a trac extension for working with GitHub
Configuration
Dump your user configuration with git config -l:
[recombinator](129) $ git config -l user.name=Nick Black user.email=dank@qemfd.net github.user=dankamongmen [recombinator](0) $
Dump the system configuration, if one exists, via git config --system -l:
[recombinator](129) $ git config --system -l color.diff=auto color.status=auto color.branch=auto [recombinator](0) $
Links
- Tv's "Git for Computer Scientists"
- tpope's "Note About Git Commit Messages" (2008-04-19)
- GitWiki's GitTips