Skip to content

Instantly share code, notes, and snippets.

@ToJans
Created August 23, 2010 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ToJans/545018 to your computer and use it in GitHub Desktop.
Save ToJans/545018 to your computer and use it in GitHub Desktop.
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 user.email=xxx.yyy@zz.com
-> 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