Reputation: 48933
I have never used SN or Git but I really want to start. I have doen some reasearch over the past couple months but it seems really confusing to me. I just now watched a tutorial video for using git with github.com and it seems like something I can do. I have some questions though.
1)
The reason I liked the git is because it seems really easy to view my files and changes made on the github site. If I were to learn to use something like TortouseSVN, does it make it really easy to view my files and all changes made like it is on the github site?
2)
1 thing I do not like about the github site is that I do not want my code to be made public, so is there a way to use git and still be able to view changes made locally somehow?
3)
Do you know any good resources on how to setup and use TortouseSVN on windows 7, for someone who has never used any sort of source control?
Upvotes: 0
Views: 432
Reputation: 10190
Ok, you're liable to get flooded with responses but the basics are fairly simple:
If you're a solo developer then git or mercurial is probably the way to go, I firmly believe that a "server" equivalent repository is a requirement (its the one you hook your Continuous Integration server into) but you don't need to be server based as SVN is (there are issues with working practices with distributed systems that are inherently avoided with server based systems but the argument is that the benefits outweigh the challenges and I'm beginning to see how that might be the case).
To explicitly answer your questions:
Upvotes: 2