Difference between revisions of "Umgang mit Git"
Line 1: | Line 1: | ||
+ | ==How to use GIT== | ||
+ | *commit - if a part is read commit the changes to you local repository | ||
+ | *pull - pull as often as possible. If the code of you local repository is far away from the remote repository a merge could be difficult | ||
+ | *push - ATTENTION: before you push your code to the remote repository you need to pull and merge the two version locally. Only if all merge conflicts are solved you can push you actual state!! | ||
+ | |||
[[GIT Background]] | [[GIT Background]] | ||
Revision as of 09:17, 22 January 2013
How to use GIT
- commit - if a part is read commit the changes to you local repository
- pull - pull as often as possible. If the code of you local repository is far away from the remote repository a merge could be difficult
- push - ATTENTION: before you push your code to the remote repository you need to pull and merge the two version locally. Only if all merge conflicts are solved you can push you actual state!!
Git GUIs
- eclipse plugin EGIT
- TortoiseGIT
For more detailed GIT information go to: ProGit - Git Tutorial