Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I fetch my git repository from SourceForge?

My git repository is currently on Sourceforge, I've just reinstalled Ubuntu and I want to continue working on my repository, but I can't figure how to do it, could someone give me some really easy instructions? (I'm very new to git)

like image 448
Ioana Avatar asked Dec 02 '22 22:12

Ioana


1 Answers

$ sudo apt-get install git # do this once, to install git
$ git clone git://PROJECT.git.sourceforge.net/gitroot/PROJECT/PROJECT

You'll have to substitute your project name obviously, and maybe one of the tokens will be slightly different for you, depending on what your project is. Probably you can find the exact URL to clone on your project page itself.

like image 70
John Zwinck Avatar answered Dec 11 '22 15:12

John Zwinck