Menu

Code

Read/Write SSH access

New to Git?

Learn the basics.
Empty Repository
It looks like this Git repository doesn't have any files in it. Let's commit your project code now. Just run the commands below.

First time using Git

cd myproject
git init
# add all your files.  Users can specify file names or directories instead of '.'
git add .
git commit -a -m 'Initial commit'
git remote add origin ssh://*anonymous@git.code.sf.net/p/yuta2101/code
git push -u origin master

Existing repository using Git

cd myproject
git remote add origin ssh://*anonymous@git.code.sf.net/p/yuta2101/code
git push -u origin master
 
Did you get asked for your SourceForge password during this process? You can securely use your Git repository and avoid having to re-enter your password by setting up an ssh-key.