#1 Members - Reputation: 776
Posted 10 July 2012 - 10:10 AM
However my issue is, I don't really have money to buy VS 2011/2012. The express versions don't support source control so those really can't help.
So now i'm wondering, what IDE can I use in a team environment that will allow me to commit and pull down the newest version of our project?
Or, is there a program I can use with Code::Blocks or NetBeans or even VS Express to commit and etc?
#2 Members - Reputation: 1673
Posted 10 July 2012 - 10:53 AM
With Tortoise, it's as simple as opening the folder in explorer, right click -> "SVN Update", write code, make sure it doesn't break anything, and when you're done go to the same folder in explorer (optionally selecting only certain files) and right click -> "SVN Commit". I do this all the time from my work machine (where I could only install the express edition to dabble in some projects during lunch) and it has yet to break anything on the IDE-integrated side on my home system. Under the hood, SVN doesn't know you're talking to it through any particular medium. IDE plugin, shell plugin, command line...no difference.
Edit: needed to mention - all my comments deal specifically with SVN as your source control. There are other tools as well, most notably Git and Hg.
Edited by BCullis, 10 July 2012 - 10:55 AM.
#3 Members - Reputation: 776
Posted 10 July 2012 - 11:05 AM
#4 Members - Reputation: 346
Posted 10 July 2012 - 11:20 AM
Is there a way to use a version system with Tortoise?
Do you mean the option of tracking past versions of files and being able to revert your directory to any past revision? If yes, then Tortoise is what you're looking for. It even has a nice interface (when you press commit you can decide which files to add). Not only that but in the case of a conflict you can look at the two files side by side and Tortoise shows you what is conflicting and offers you options how to resolve the conflict.
Edited by bonus.2113, 10 July 2012 - 11:20 AM.
Blog: darioseyb.com
#5 Members - Reputation: 627
Posted 10 July 2012 - 11:25 AM
So pretty much Tortoise is just source control with out the GUI
Tortoise is not a source control system, it's just a utility client for subversion or git. It provides icons overlay and context menu in the windows explorer to help manage source repository or working copy without using the command line (source control systems such as subversion or git always comes as command line tools)
There are different version of Tortoise each dedicated to a specific source control such as Tortoise SVN for subversion, Tortoise git for git.
#6 Members - Reputation: 776
Posted 10 July 2012 - 11:28 AM
For a free application that's impressive. O_O
Is there a way to use a version system with Tortoise?
Do you mean the option of tracking past versions of files and being able to revert your directory to any past revision? If yes, then Tortoise is what you're looking for. It even has a nice interface (when you press commit you can decide which files to add). Not only that but in the case of a conflict you can look at the two files side by side and Tortoise shows you what is conflicting and offers you options how to resolve the conflict.
Pretty much that's what I mean't. I would probably use it where if there was an issue we could roll back and check that version if possible. That along with some sort of auto build maker. For testing purposes
#7 Members - Reputation: 776
Posted 10 July 2012 - 11:30 AM
So it's GIT but a user friendly version it seems? I've installed it and it seems like that is the case.
So pretty much Tortoise is just source control with out the GUI
Tortoise is not a source control system, it's just a utility client for subversion or git. It provides icons overlay and context menu in the windows explorer to help manage source repository or working copy without using the command line (source control systems such as subversion or git always comes as command line tools)
There are different version of Tortoise each dedicated to a specific source control such as Tortoise SVN for subversion, Tortoise git for git.
#8 Members - Reputation: 1673
Posted 10 July 2012 - 11:55 AM
Tortoise is a shell plugin (i.e. it modifies Windows Explorer) that gives you handy ways around doing everything through the command line. Instead of navigating to your local repository folder on command line and typing "svn commit" with possible argument flags, you just right click in the repository window and select the commit option. Tortoise also gives you an easier interface for controlling settings like repository address, username and saved password, adding comments to commits, and so on.
IDE plugins like Subclipse and AnkhSVN just take the idea of shell plugins one step further. With Ankh, I have the SVN icons on each file in my project explorer inside Visual Studio, and I can right click a project and update it or commit it directly from the IDE.
#9 Members - Reputation: 776
Posted 10 July 2012 - 12:02 PM
#10 Members - Reputation: 3717
Posted 10 July 2012 - 12:50 PM
Okay so really what i was asking about was SVN, Git or Hg. Tortoise is just a tool to help make that process easier.
Okay I understand that now. After looking it up it seems pretty simple to get into. I've just gotta setup a GIT / local server of some kind and I'll set Tortoise with it.
At work we use https://bitbucket.org/ for our git repositories, it works great. (Allthough cloning large repos can be a bit slow and its only free for up to 5 users)
The voices in my head may not be real, but they have some good ideas!
#11 Members - Reputation: 776
Posted 10 July 2012 - 12:52 PM
I was going to ask if it was private but it seems it already is.
Okay so really what i was asking about was SVN, Git or Hg. Tortoise is just a tool to help make that process easier.Okay I understand that now. After looking it up it seems pretty simple to get into. I've just gotta setup a GIT / local server of some kind and I'll set Tortoise with it.
At work we use https://bitbucket.org/ for our git repositories, it works great. (Allthough cloning large repos can be a bit slow and its only free for up to 5 users)
#12 Members - Reputation: 1673
Posted 10 July 2012 - 01:09 PM
#13 Members - Reputation: 776
Posted 10 July 2012 - 01:16 PM
I wish i knew about both of those when i had my capstoneI can personally give recommendations for both bitbucket and assembla (who are a site affiliate here, it seems). Used both, had no issues, enjoyed the communication tools for working with up to 5 other people on projects (to include my CS capstone course project).
#14 Members - Reputation: 194
Posted 10 July 2012 - 05:12 PM
Personally I like using the command-line because it pulls you out of being dependent on the OS. We have installed both of them on our server for private use because we didn't want our code uploaded on an external server.
Edited by DZee, 12 July 2012 - 06:50 PM.
I "surf" the web, literally.
#16 Members - Reputation: 776
Posted 10 July 2012 - 07:28 PM
You can just download github or svn and use the command-line. Some other third-party software enable most of these commands as GUI buttons integrated within the explorer(RabbitCVS/Tortoise etc).
Personally I like using the command-line because it pulls you out of being dependent on the OS. We have installed both of them on our server for private use because we didn't want our code uploaded on an external server.
Really, that sounds much better than the GUI at this point lmao. I feel like that's probably better just incase I even end up moving platforms.
You know that Getting VS 2011 and Vs 2012 is easy not hard to get it
I'm not sure where you going with that statement, care to explain? Because I don't plan on obtaining it illegally.
#17 Members - Reputation: 194
Posted 12 July 2012 - 06:49 PM
http://cworth.org/hgbook-git/tour/
Here is the official website just in case.
http://git-scm.com/
Edited by DZee, 12 July 2012 - 06:50 PM.
I "surf" the web, literally.
#18 Members - Reputation: 776
Posted 12 July 2012 - 07:10 PM
I recommend git if you have the choice. Here's a resource that can get your started on using it with commands. It might feel slow when you begin, but eventually it becomes second nature.
http://cworth.org/hgbook-git/tour/
Here is the official website just in case.
http://git-scm.com/
Thanks! I actually got started a bit tonight! Doesn't seem that hard to get into.
#19 Crossbones+ - Reputation: 1179
Posted 13 July 2012 - 02:11 AM
I found setting up the initial repositories and server far easier than doing the same for a SVN, but that might also just be because I work daily with perforce and not any of the others.
A proper standalone IDE for SVN is rapidsvn btw and it is decent to work with.
Edited by NightCreature83, 13 July 2012 - 02:11 AM.
#20 Members - Reputation: 171
Posted 14 July 2012 - 04:23 PM
Awekingster, on 10 July 2012 - 07:38 PM, said:
You know that Getting VS 2011 and Vs 2012 is easy not hard to get it
I'm not sure where you going with that statement, care to explain? Because I don't plan on obtaining it illegally.
I am not sure what he was refering to but there are several ways for people to get legitimate copies of all Microsoft's software for free if you know where to look. We have been a member of their [Microsoft] programs for some time and have all the updated versions of everything we use and some not commercially released software. It is all free to startup companies set up by Microsoft to help get you up and running. There are also other services they offer to program members for free as well.
edited to add spaces on run together words.
Edited by Liquid Shock Games, 14 July 2012 - 04:26 PM.






