Git
From DataMining
We will soon switch from subversion to git. Please see the tutorial or for svn users, see git for svn users
To check out source
- git clone ssh://central.cis.upenn.edu/home1/u/ungar/git
After making changes, the code is checked in by:
- git commit -a
- git push
To sync to the latest version:
- git commit -a
- git pull
if you want to set up your own git backup
- create a git directory locally (cd foo; git init; git add .; git commit) creates foo/.git
- copy it to the remote back-up site (e.g. to git/foo.git)
- then clone it back locally
Main Page for the University of Pennsylvania Datamining group

