From blackwiki
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) $
| goal
| subversion
| git
|
| Add an external repository repo at point dir/path
| svn propedit svn:ignore dir, and add path
| git submodule add repo dir/path (there's a Submodule Tutorial)
|
Links