What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Easiest way to share CC projects?

Venus112

New Member
Joined
Jun 17, 2010
Messages
1,509
Reaction score
13
So Shaddar and I have started working together about his projects, in terms of optimisation and implementation of GUIs.

But what is the easiest way for us to share everything we make?

So we can both open them up as projects, where everything the other has added will be and we'll both be able to edit the files?

We're thinking of using Dropbox for the sharing, but i dont know what the easiest way would be share the projects, so we both can edit them with full control

We can't just add the .cs files to dropbox and that would be it, cause when a GUI is added, those files would not be up inside the CC projectfile for the other person
 
Do not use Dropbox if you work on files parallel. Its a pain in the ass.

Just setup svn / git and you will be happy.
 
idk, it would just zip everything in the project folder, and send it as is. although im sure people are going to recommended a svn
 
Do not use Dropbox if you work on files parallel. Its a pain in the ass.

Just setup svn / git and you will be happy.

How so?
We're also thinking about how to share, cause i'm guessing we'd have to share the project directly from the projects folder in visual studio?

The reason i'm scared about using SVN, is that because we both change the files - we'd have to delete files in the folders if there's an update, because if we've changed the files ourselves it wont update them?
 
Last edited:
From what i can gather, that basicly a "Plugin" for Visual Studio? that shares your work with whoever you wish? And you're able to edit it at the same time?
Editing one file at the same time will never be possible. There's just no way to support that. Use a check-out/check-in mechanism for the file you're working on so that the other won't work on the same file you're working on.
 
Editing one file at the same time will never be possible. There's just no way to support that. Use a check-out/check-in mechanism for the file you're working on so that the other won't work on the same file you're working on.

Probably wont be a problem with working on same item at once, was just wondering if i read correct what it said
 
As long as you won't edit the same methods, you'll be OK with SVN. Just care about making micro-changes and submit every time (do not submit 2+ methods changed)
 
Editing one file at the same time will never be possible. There's just no way to support that. Use a check-out/check-in mechanism for the file you're working on so that the other won't work on the same file you're working on.
Off-topic: Yes it is, google wave used to do this:)

On-topic, SVN is the way to go!
 
Can you edit cs files with google docs? When I was working on sociology, we google doc'd any group project. It was pretty cool.

I like svn though. You can upload and download stuff quickly and as long as you communicate with each other, it is really simple.

I ask Shaddar to team up with me before and he never said anything. :p
 
Back
Top