Digital Paint Discussion Board

Paintball 2: The Game => Paintball 2 Discussion => Topic started by: gamelaster on September 25, 2015, 09:24:39 AM

Title: Move source to GitHub
Post by: gamelaster on September 25, 2015, 09:24:39 AM
Heya,

I think it will be really great to move a source to GitHub and more contribute! :-)

Whats you think about that?
Title: Re: Move source to GitHub
Post by: mRokita on September 25, 2015, 12:57:21 PM
1
Title: Re: Move source to GitHub
Post by: MON1TOR on September 25, 2015, 02:32:47 PM
1
Title: Re: Move source to GitHub
Post by: Zorchenhimer on October 03, 2015, 06:37:04 PM
I fully support this.  It would be rather easy to do too.  After a repo is created on GitHub (replace repo url if necessary):

Code: [Select]
$ git clone http://git.zorchenhimer.com/paintball2/paintball2.git
$ git remote add github git@github.com:jitspoe/paintball2.git
$ git push github master

Or, if you want to generate the history from CVS yourself (The cvsimport will take a while.  Grab a coffee.):
Code: [Select]
$ git cvsimport -d :pserver:anonymous@paintball2.cvs.sourceforge.net:/cvsroot/paintball2/ -C paintball2 paintball2
$ cd paintball2
$ git remote add github git@github.com:jitspoe/paintball2.git
$ git push github master

This can be done on Windows or Linux.  On windows, open up a Git Bash session (there's a menu icon for it in GitExtensions) and type/copy-paste the commands there.  It's also possible to do it through the gui (sans cvsimport, iirc), but it's just easier to explain this way.
Title: Re: Move source to GitHub
Post by: blanford on October 08, 2015, 02:02:49 AM
It is easier to download at github.
Title: Re: Move source to GitHub
Post by: webhead on October 14, 2015, 12:02:29 PM
Good to hear more people echoing this sentiment - but FYI it's already been mentioned and discussed over >here< (http://dplogin.com/forums/index.php?topic=27978.0)