Using Git
From OpenSimulator
(Difference between revisions)
Line 4: | Line 4: | ||
== Linux == | == Linux == | ||
+ | |||
+ | Git is provided as a package with all modern Linux distributions. Install the following packages depending on environment: | ||
+ | * Debian, Ubuntu: git-core | ||
== Windows == | == Windows == | ||
+ | |||
+ | On Windows you need to install 2 packages: | ||
+ | * msysgit - the basic git port for windows. Install this first. | ||
+ | * [http://code.google.com/p/tortoisegit/ Tortoise Git] - the git explorer. Install this second. | ||
+ | |||
+ | When '''installing msysgit''' be sure to choose '''Unix style line endings'''. This will make it so that all the line endings are managed correctly, which will prevent merge issues in the future. | ||
= The OpenSim Test Repository = | = The OpenSim Test Repository = | ||
Line 13: | Line 22: | ||
== Windows == | == Windows == | ||
− | = | + | = Subversion Like Workflow = |
Revision as of 09:28, 13 July 2009
This is an introduction to using git for OpenSim core developers.
Contents |
Installing Git
Linux
Git is provided as a package with all modern Linux distributions. Install the following packages depending on environment:
- Debian, Ubuntu: git-core
Windows
On Windows you need to install 2 packages:
- msysgit - the basic git port for windows. Install this first.
- Tortoise Git - the git explorer. Install this second.
When installing msysgit be sure to choose Unix style line endings. This will make it so that all the line endings are managed correctly, which will prevent merge issues in the future.