checkout

svn+ssh://svn.sourceforge.jp/svnroot/ginkgo

1. Upload your ssh's public key to the sourceforge.

For details,refer to the following address. https://sourceforge.jp/account/editsshkeys.php

2. Test your ssh connection.

$ ssh loginname@shell.sourceforge.jp

3. Configure git setting and clone the git repository at first time.

$ git config --global user.name "Your Name Comes Here"

$ git config --global user.email loginname@yourdomain.example.com

$ git clone loginname@git.sourceforge.jp:/gitroot/ginkgo/master.git

For details,refer to the following address.

https://sourceforge.jp/projects/ginkgo/info

4. Switch to the master branch.

$ cd master

$ git checkout master

5. Fetch from master repository's changes every time before you start tasks.

$ git-pull --rebase

6. Edit source code and commit to your local repository several times.

$ git commit -a -m "some commit message"

7. If your source code works well,commit to master repository.

$ git-pull --rebase

$ git push