Scid development has been moved from CVS to Git.


The latest source code can be obtained with:
git clone git://scid.git.sourceforge.net/gitroot/scid/scid


after that the code will be updated with:
git pull






To modify the code, first of all create a new local branch:
git checkout -b my_code


Write some code and check it with:
git diff --color master


Commit to your local repository with:
git commit -a
(write a clear message log that explain your code)


Get updates from remote repository:
git checkout master
git pull


Go back to your code:
git checkout my_code


If the master code is changed, rebase your code and fix any conflict:
git rebase master


Create a patch and post it to the mailing list:
git format-patch master




Bye,
Fulvio 
------------------------------------------------------------------------------
Simplify data backup and recovery for your virtual environment with vRanger. 
Installation's a snap, and flexible recovery options mean your data is safe,
secure and there when you need it. Data protection magic?
Nope - It's vRanger. Get your free trial download today. 
http://p.sf.net/sfu/quest-sfdev2dev
_______________________________________________
Scid-users mailing list
Scid-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/scid-users

Reply via email to