After install the software tools (VS Studio and addtional software in Requirements section), you need config your machine to team colaboration. You can upload code to the repository by command line or directly from the Visual Studio (2012) throught the Git plugin.
Visual Studio
Getting Started:
http://blogs.msdn.com/b/visualstudioalm/archive/2013/01/30/getting-started-with-git-in-visual-studio-and-team-foundation-service.aspx
Instructions:
1. Run Visual Studio;
2. In "Team Explorer" tab, click on "Conect on Team Projects".
3. In "Local Git Repositories", click on "Clone".
4. Type the url and an empty local folder:
https://john-smith@git.code.sf.net/p/openhtm/code (replacing with your username)
D:(you can choose any folder name)
5. Enter your Sourceforge username and password.
(Check the chosen folder if it has the downloaded code)
Command Line
Just follow the instructions:
1. Download and install the Git for Windows software (http://msysgit.github.com/).
2. Start "Git Bash" software in the Windows Menu.
3. Config your Git user details typing the commands bellow (replacing with your data) if it is first time with Git:
git config --global user.name "John Smith"
git config --global user.email "john.smith@email.com"
4. Open the destination folder of the project in your machine (you can choose any name):
cd D:\\Projects\\OpenHTM
5. Clone (download) the project to your machine (replacing with your data):
git clone ssh://john-smith@git.code.sf.net/p/openhtm/code openhtm-code (john-smith is the username in SourceForge)
6. Type your password (in SourceForge).
(Check the chosen folder if it has the downloaded code)
An easy tutorial about using GitHub by command line is here:
http://net.tutsplus.com/tutorials/other/easy-version-control-with-git/
Next page: Introduction