Skip to content
gnomet edited this page Sep 14, 2010 · 7 revisions

If you are a collaborator in this github project, you can follow these instructions.

SVN-like simple workflow (to get started)

svn checkout = git clone [email protected]:sizzlelab/Kassi.git kassi
svn update = git pull

make changes to code as normal

svn status = git status
svn commit -m “commit message” = git commit -a -m “commit message” (this commits to your local repo only)
to actually put your commits to the original github repo use: git push

Note: this workflow ignores many potentially good features of git, but it should be easy to grasp and keep on working as with svn

Clone this wiki locally