Author Topic: Move source to GitHub  (Read 1946 times)

gamelaster

  • PGP
  • Posts: 29
Move source to GitHub
« on: September 25, 2015, 07: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?

mRokita

  • Autococker
  • Posts: 598
Re: Move source to GitHub
« Reply #1 on: September 25, 2015, 10:57:21 AM »
1

MON1TOR

  • 68 Carbine
  • Posts: 328
Re: Move source to GitHub
« Reply #2 on: September 25, 2015, 12:32:47 PM »
1

Zorchenhimer

  • Autococker
  • Posts: 2614
Re: Move source to GitHub
« Reply #3 on: October 03, 2015, 04: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.

blanford

  • PGP
  • Posts: 6
Re: Move source to GitHub
« Reply #4 on: October 08, 2015, 12:02:49 AM »
It is easier to download at github.

webhead

  • Committee Member
  • Autococker
  • Posts: 1185
Re: Move source to GitHub
« Reply #5 on: October 14, 2015, 10:02:29 AM »
Good to hear more people echoing this sentiment - but FYI it's already been mentioned and discussed over >here<