Git

From YobiWiki
Revision as of 22:52, 16 September 2008 by <bdi>PhilippeTeuwen</bdi> (talk | contribs) (New page: ==git== ===Links=== * http://git.or.cz/course/svn.html * http://www-cs-students.stanford.edu/~blynn/gitmagic/ * http://en.wikipedia.org/wiki/Git_(software) ===Install=== sudo apt-get i...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

git

Links

Install

sudo apt-get install git-svn git-doc git-gui tig
git config --global user.name "Your Name Comes Here"
git config --global user.email you@yourdomain.example.com
git config --global color.diff auto
git config --global color.status auto
git config --global color.branch auto
git init

Using a Subversion server

Getting the full project:

git-svn clone http://subversion.server.com/project -T trunk -b branches -t tags
(git-gc to compress if it took a big room)

Updating the local repository according to the subversion server:

git-svn rebase

Sending the local changes to the subversion server:

git-svn dcommit

Ignoring some files

cat > .gitignore <<EOF
*.pyc
*~
EOF
git add .gitignore