Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Code sharing between small student group

Tags:

python

eclipse

I'm currently in college, and we work in groups of three to create small python projects on a weekly basis.

We code with Eclipse and PyDev but we've got a problem when it comes to sharing our work. We end up sending an infinite stream of emails with compressed projects.

What we need is a way to keep the source code updated and we need to be able to share it between us. (on both Windows and Linux) What do you recommend?

thanks in advance.

like image 755
Xblade Avatar asked Sep 04 '26 03:09

Xblade


1 Answers

Use Git and Github. This way your code is in version control ( which is a good practice) and it can be shared with other people in your project through github. ( github was built with good git integration).

like image 195
Vanchinathan Chandrasekaran Avatar answered Sep 05 '26 18:09

Vanchinathan Chandrasekaran