Created
August 23, 2010 07:39
-
-
Save ToJans/545018 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Download msysgit and install it: | |
http://code.google.com/p/msysgit/downloads/detail?name=Git-1.7.0.2-preview20100309.exe&can=2&q= | |
2. Make a directory for your projects "c:\projects",right click it in explorer and choose "Git Bash here" | |
3. Open the network folder "\\JOMMEKE\github" in explorer | |
4. In git bash, configure your settings: | |
-> git config --global [email protected] | |
-> git config --global user.name=xxx yyy | |
-> git config --global core.autocrlf false | |
5. Clone the original repository | |
-> git clone file://jommeke/github/workflow | |
6. Go to the cloned folder | |
-> cd workflow | |
8. Select the development branch | |
-> git checkout development | |
7. Create your own branch | |
-> git branch "somefancyname" | |
8. When done checkin your changes, select the development branch & pull changes from your branch | |
-> git add . | |
-> git commit -m "description of the commit" | |
-> git branch development | |
-> git pull "somefancyname" | |
9. When this is ok push your changes to the server | |
-> git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment