Using Git

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (Configuring Git)
(Mostly cosmetic changes and spelling/syntax checking, but changed a LOT of things)
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
This is an introduction to using git for OpenSim. If you just want to know git cloning path, jump to [[#Cloning the Repositry (for Non Core Developers)]].
+
This is an introduction to using '''git''' for OpenSimulator. If you just want to know the git cloning path, jump to [[#Cloning the Repository (for Non-Core Developers)]].
  
  
=   Installing Git   =
+
= Installing Git =
  
 
== Linux ==
 
== Linux ==
  
 
=== CLI ===
 
=== CLI ===
:Git is provided as a package with all modern Linux distributions. Install the following packages depending on environment:
+
:Git is provided as a package with all modern Linux distributions. Install the following packages depending on environment:
::* Debian, Ubuntu: <pre>apt-get install git-core</pre>
+
::* Debian, Ubuntu: <code>apt-get install git-core</code>
 
::* Centos: see the instructions at http://www.how-to-linux.com/2009/01/install-git-161-on-centos-52/
 
::* Centos: see the instructions at http://www.how-to-linux.com/2009/01/install-git-161-on-centos-52/
  
Line 24: Line 24:
 
== Windows ==
 
== Windows ==
  
On Windows you need to install 2 packages:
+
Git is now integrated in recent Visual Studio versions. You can install it with Visual Studio Setup.
* [http://code.google.com/p/msysgit/ msysgit] - the basic git port for windows. Install this first.  
+
Tortoise Git may still be useful.
* [http://code.google.com/p/tortoisegit/ Tortoise Git] - the git explorer. Install this second.
+
 
 +
Alternatively, you need to install two packages:
 +
* [http://code.google.com/p/msysgit/ 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
 
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.
+
'''Unix style line endings'''. This will manage all the line endings correctly, which will prevent merge issues in the future.
  
 
[[Image:msysgit1.png]] [[Image:msysgit2.png]] [[Image:msysgit3.png]] [[Image:msysgit4.png]] [[Image:msysgit5.png]]
 
[[Image:msysgit1.png]] [[Image:msysgit2.png]] [[Image:msysgit3.png]] [[Image:msysgit4.png]] [[Image:msysgit5.png]]
  
== Mac OS X ==
+
== macOS ==
 +
 
 +
If you have [https://www.macports.org/ MacPorts] installed, then open a Terminal window and run:
 +
 
 +
sudo port install git
 +
 
 +
Or you can even obtain the GitX GUI tool, either using <code>sudo port install GitX</code>, or as a direct download from the [https://gitx.frim.nl/ GitX Website] and put it into application folder.
 +
 
 +
Alternatively, if you use the more popular [https://brew.sh Homebrew] package manager, the command to run from Terminal is:
 +
 
 +
brew install git
  
If you have [http://www.macports.org/ MacPorts] installed, then open a Terminal window and run:
+
Note that Apple already includes its own <code>git</code> under <code>/usr/bin/git</code> — usually several versions behind (but nevertheless fully functional). Homebrew will not overwrite Apple's own <code>git</code>. Instead, it will be symbolically linked to <code>/usr/local/bin/git</code> — it will be up to you to configure your shell to execute applications from <code>/usr/local/bin/</code> before <code>/usr/bin</code> (by default, the reverse is true).
  
sudo port install git-core
+
GitX is also available via Homebrew:
  
Or you can even obtain GitX GUI tool from [http://gitx.frim.nl/ GitX Website] and put it into application folder.
+
brew install GitX
  
 +
Finally, note that, unlike MacPorts, Homebrew is ''not'' invoked with <code>sudo</code> (mostly for security reasons).
  
= Configuring Git =
+
= Configuring Git =
  
 
Git has both a global config and a local config for each repo. As one might expect, local trumps global. The first important thing to do is set your name and email address, as that will be used in your commits.
 
Git has both a global config and a local config for each repo. As one might expect, local trumps global. The first important thing to do is set your name and email address, as that will be used in your commits.
  
On Linux / Mac OS X this is done via:
+
On Linux / macOS this is done via:
  
 
  git config user.email YOUR@EMAIL.ADDR
 
  git config user.email YOUR@EMAIL.ADDR
Line 57: Line 71:
 
To setup your Context Menu to make your options easier, select the Context Menu options as shown above and choose what you want to have displayed immediately.
 
To setup your Context Menu to make your options easier, select the Context Menu options as shown above and choose what you want to have displayed immediately.
  
<br>
+
<br />
  
 
[[Image:Config3.png]]
 
[[Image:Config3.png]]
  
= Git Repositories for OpenSim =
+
= Git Repositories for OpenSimulator =
  
The urls for the repositories are as follows:
+
The URLs for the repositories are as follows:
  
 
{| border="1" cellpadding="5"
 
{| border="1" cellpadding="5"
Line 71: Line 85:
 
|}
 
|}
  
== Cloning the Repositry (for Core Developers) ==
+
== Cloning the Repository (for Core Developers) ==
  
If you are a core developer, use the developer url above. If you aren't a core developer, use the anon url above. The initial clone will take a few minutes, as it is pulling the entire change history. Don't be concerned about space, all the change history stored in git takes up less space than a single checked out copy of opensim. Welcome to the wonderful world of content addressable storage.
+
If you are a core developer, use the developer URL above. If you aren't a core developer, use the Anon URL above. The initial clone will take a few minutes, as it needs to pull the entire change history. Don't be concerned about space, all the change history stored in git takes up less space than a single checked out copy of OpenSimulator. Welcome to the wonderful world of content addressable storage.
  
Unlike with svn, you can define multiple sources to pull from. So if you initially start with an anon tree (which is read only), you can still later define the core tree (or some other remote target on github) and push to that.
+
Unlike with '''svn''', you can define multiple sources to pull from. So, if you initially start with an anon tree (which is read only), you can still later define the core tree (or some other remote target on GitHub/GitLab) and push to that.
  
=== Linux / Mac OS X ===
+
=== Linux / macOS ===
 
Run the following on the command line:
 
Run the following on the command line:
  
 
  git clone ssh://opensimulator.org/var/git/opensim
 
  git clone ssh://opensimulator.org/var/git/opensim
  
This will create an opensim-test directory locally
+
This will create an <code>opensim-test</code> directory locally.
  
 
=== Windows ===
 
=== Windows ===
  
Right click on the Desktop (or wherever) and 'Git Clone...'
+
Right click on the Desktop (or wherever) and select <code>'Git Clone...'</code>
  
When prompted for a url provide ssh://opensimulator.org/var/git/opensim. You username and password will be the ones used for opensimulator.org.
+
When prompted for a URL provide <code>ssh://opensimulator.org/var/git/opensim</code>. Your username and password will be the ones used for [http://opensimulator.org opensimulator.org].
  
== Cloning the Repositry (for Non Core Developers) ==
+
== Cloning the Repository (for Non-Core Developers) ==
  
 
  git clone git://opensimulator.org/git/opensim
 
  git clone git://opensimulator.org/git/opensim
Line 96: Line 110:
 
This is the equivalent of anonymous svn access.
 
This is the equivalent of anonymous svn access.
  
== Resolving git hash &amp; revision numbers ==
+
== Resolving git hash &amp; revision numbers ==
  
These generate the bin/.version file which is used to identify the Git-Hash Revision.&nbsp; The GIT Hash is used to track the builds for troubleshooting and for filling Mantis Reports.&nbsp; Without proper Version Identification developers / contributors cannot locate &amp;&nbsp;address problems within the source code, resulting in un-usable Mantis reports.&nbsp; Please Version your Builds to help everyone make a better OpenSimulator.
+
These generate the <code>bin/.version</code> file which is used to identify the Git-Hash Revision.&nbsp; The git hash is used to track the builds for troubleshooting and for filling Mantis Reports.&nbsp; Without proper Version Identification, developers / contributors cannot locate &amp;&nbsp;address problems within the source code, resulting in un-usable Mantis reports.&nbsp; Please Version your Builds to help everyone make a better OpenSimulator.
  
 
[[Show git version numbers - Windows|Windows batchfile]]  
 
[[Show git version numbers - Windows|Windows batchfile]]  
Line 104: Line 118:
 
[[Show git version numbers - Linux|Linux bash script]]  
 
[[Show git version numbers - Linux|Linux bash script]]  
  
NOTE:&nbsp; Older installation of GIT&nbsp;such as 1.6.0.4 do not support the extra functions.&nbsp; To make use of the above scripts it is recomended you update your GIT&nbsp;installation to the most current revisions.&nbsp; They are available from [http://git-scm.com/ git-scm.com/]
+
NOTE:&nbsp; Older versions of Git — such as 1.6.0.4 do not support the extra functions.&nbsp; To make use of the above scripts it is recomended you update your Git&nbsp;installation to the most current version.&nbsp; All versions are available from [https://git-scm.com/ git-scm.com/].
 +
 
 +
(Note from 2023: if you're ''really'' using such a Jurassic version of '''git''', you ''must'' upgrade to a newer one! At the very least, pick one from the '''''2'''''.X branch).
  
 
= Conceptual Changes from Subversion =
 
= Conceptual Changes from Subversion =
  
Distributed source code control is a substantially different mental model than centralized source code control. If it freaks you out a bit, don't worry, everyone has that same reaction initially. This [http://betterexplained.com/articles/intro-to-distributed-version-control-illustrated/ blog post] is the best explanation that I've seen of the concepts involved.
+
Distributed source code control is a substantially different mental model than centralized source code control. If it freaks you out a bit, don't worry, everyone has that same reaction initially. This [http://betterexplained.com/articles/intro-to-distributed-version-control-illustrated/ blog post] is the best explanation that I've seen of the concepts involved.
  
For heavy users of subversion you should read the [http://git.or.cz/course/svn.html git / svn cheat sheet]. This provides a very solid basis for making your changes. That being said there are some conceptual changes to note.
+
For heavy users of Subversion, you should read the [http://git.or.cz/course/svn.html git / svn cheat sheet]. This provides a very solid basis for making your changes. That being said, there are some conceptual changes to note:
  
 
* Terminology
 
* Terminology
** master is the name of the primary upstream branch (in subversion terms, this is trunk)
+
** '''master''' is the name of the primary upstream branch (in Subversion terms, this is '''trunk''').
** origin is the name and location of the tree you cloned from
+
** '''origin''' is the name and location of the tree you cloned from.
* All repositories are full peers to all other repositories. Your cloned git repo is all the history of the entire project, available locally. It means you can sync between any 2 clones of the repository, not just between your clone and the master repo. This lets people work together on changes not in
+
* All repositories are full peers to all other repositories. Your cloned git repo is all the history of the entire project, available locally. It means you can sync between any 2 clones of the repository, not just between your clone and the master repo. This lets people work together on changes not in '''master''' before submitting them.
* Version numbers are SHA1 hashes, not sequential integers. This means referring to specific revisions is a bit more interesting. For most of the git commands, you only need to give it the first 6-8 digits of the hash for them to work.
+
* Version numbers are SHA1 hashes, not sequential integers. This means referring to specific revisions is a bit more interesting. For most of the git commands, you only need to give it the first 6-8 digits of the hash for them to work.
 
* Committing
 
* Committing
** commits are local. This means they are fast (no network involved) and they are committed against the last state of the tree. Any conflict resolution will be handled after commits, during your next pull. This is slightly different than pull-resolve-then-commit model of subversion.
+
** Commits are local. This means they are fast (no network involved) and they are committed against the last state of the tree. Any conflict resolution will be handled after commits, during your next pull. This is slightly different than pull-resolve-then-commit model of Subversion.
** by default only files you explicitly '''git add''' are put into the commit. To get '''svn ci''' equivalency use '''git commit -a''' to commit all outstanding files (I think tortoise handles this for you)
+
** By default, only files you explicitly <code>git add</code> are put into the commit. To get <code>svn ci</code> equivalency use <code>git commit -a</code> to commit all outstanding files (I think Tortoise handles this for you).
** after making a commit you must then '''push''' it to a remote repository (probably origin). By default you push only branches you have previously pushed, typically master.
+
** After making a commit you must then '''push''' it to a remote repository (probably origin). By default, you push only branches you have previously pushed, typically '''master'''.
  
The biggest real change is the Subversion dictates a very specific workflow. Git does not. Git allows for many different workflows, and lets each developer use the one that is best suited to his/her self.
+
The biggest real change is that Subversion dictates a very specific workflow. Git does not. Git allows for many different workflows, and lets each developer use the one that is best suited to his/herself.
  
 
= Using Git like Subversion/trunk development =
 
= Using Git like Subversion/trunk development =
  
This is a set of quick instructions to use git like we do subversion development today. It is targetted for core developers (so assumes you are using the ssh access), though most of it will work for non developers by just changing a url.
+
This is a set of quick instructions to use '''git''' like we do Subversion development today. It is targeted for core developers (so it assumes you are using '''ssh''' access), though most of it will work for non-developers by just changing a URL.
  
This is done by giving the unix commands. These options should all be available in the context menu on tortoise git as well.
+
The instructions below are given using the command-line tool '''git'''. These options should all be available in the context menu on Tortoise Git (and on other GUIs) as well.
  
 
== Getting the source code ==
 
== Getting the source code ==
  
'''git clone ssh://opensimulator.org/git/opensim-test'''
+
git clone ssh://opensimulator.org/git/opensim-test
  
This is the equivalent of '''svn co'''
+
This is the equivalent of <code>svn co</code>.
  
 
'''Note:''' all other operations assume that you are in the git directory.
 
'''Note:''' all other operations assume that you are in the git directory.
Line 140: Line 156:
 
== Updating your checkout ==
 
== Updating your checkout ==
  
'''git pull'''
+
git pull
  
This is the equivalent of '''svn update'''
+
This is the equivalent of <code>svn update</code>.
  
 
== Inspecting what has changed in your working tree ==
 
== Inspecting what has changed in your working tree ==
  
'''git status'''
+
git status
  
This is the equivalent of '''svn status'''
+
This is the equivalent of <code>svn status</code>.
  
 
== Committing a change ==
 
== Committing a change ==
  
either:
+
Either:
  
'''git add file1 file2 ...'''
+
git add file1 file2 ...
 
+
git commit
'''git commit'''
+
  
 
or
 
or
  
'''git commit -a'''
+
git commit -a
  
by default git does not add all files during a commit.
+
By default, git does not add all files during a commit.
  
 
== Pushing the committed change ==
 
== Pushing the committed change ==
  
The first time you do this you'll need to specify which branch to push.
+
The first time you do this you'll need to specify which branch to push to.
  
'''git push origin master'''
+
git push origin master
  
After the first time a simple '''git push''' will be enough, as it defaults to origin, and now git knows that master should by synced to origin.
+
After the first time, a simple <code>git push</code> will be enough, as it defaults to origin, and now git knows that master should by synced to origin.
  
'''Important:''' commits in git are local. They are not included in the main tree '''until you push''' them. This means you can create commits when you are not on the network and sync afterwards.
+
'''Important:''' Commits in git are ''local''. They are not included in the main tree '''until you push''' them. This means you can create commits when you are not on the network and sync afterwards.
  
== Setting the checkout dir to a specific revision ==
+
== Setting the checkout directory to a specific revision ==
  
'''git reset --hard #HASHVALUE'''
+
git reset --hard #HASHVALUE
  
This will effectively rewind the tree to the specific revision, and modify the checkout dir accordingly. This is equiv to '''svn up -R#version'''.
+
This will effectively rewind the tree to the specific revision, and modify the checkout dir accordingly. This is equivalent to <code>svn up -R#version</code>.
  
git reset can also be useful if you screwed up commits and want to get rid of them
+
<code>git reset</code> can also be useful if you screwed up commits and want to get rid of them
  
 
== Resetting the tree to master (i.e. trunk) ==
 
== Resetting the tree to master (i.e. trunk) ==
  
'''git pull'''
+
git pull
  
 
per previous
 
per previous
Line 190: Line 205:
 
== Creating a Patch ==
 
== Creating a Patch ==
  
'''git format-patch #HASHVALUE'''
+
git format-patch #HASHVALUE
  
This will create a patch suitable for attaching or emailing from a single commit. You can also specify a range of commits.
+
This will create a patch suitable for attaching or emailing from a single commit. You can also specify a range of commits.
  
This is closest to '''svn diff > patchfile.txt''' for uncommitted changes in subversion.
+
This is closest to <code>svn diff > patchfile.txt</code> for uncommitted changes in Subversion.
  
 
== Applying a Git Patch ==
 
== Applying a Git Patch ==
Line 200: Line 215:
 
If someone has formatted a git patch you can apply it directly (including all file adds, file mode changes, and their change log entry) with:
 
If someone has formatted a git patch you can apply it directly (including all file adds, file mode changes, and their change log entry) with:
  
preferred method (preserves creator info): '''git am --signoff patchfile.patch'''
+
preferred method (preserves creator info): <code>git am --signoff patchfile.patch</code>
  
this also works (try above method first) : git apply patchfile.patch
+
this also works (try above method first): <code>git apply patchfile.patch</code>
  
 
== Reverting a Change ==
 
== Reverting a Change ==
  
'''git revert #HASHVALUE'''
+
git revert #HASHVALUE
  
This directly reverts the change, with a commit message stating that fact. There is no svn direct equiv, though this is often accomplished through: svn diff -R revisions > revert.patch && patch -p0 < revert.patch && svn ci -m "reverting revisions"
+
This directly reverts the change, with a commit message stating that fact. There is no svn direct equivalence, though this is often accomplished through: <code>svn diff -R revisions > revert.patch && patch -p0 < revert.patch && svn ci -m "reverting revisions"</code>
  
 
== Resetting part of the tree to master ==
 
== Resetting part of the tree to master ==
  
'''git checkout -- file1 file2 ...'''
+
git checkout -- file1 file2 ...
  
Checkout is an operation that populates the working directory from the git repository. Doing a git checkout (master is the implied branch) -- file1 file2 repulls those files from the git repo, clobbering them in your local directory. This is like '''svn revert'''.
+
Checkout is an operation that populates the working directory from the git repository. Doing a <code>git checkout</code> (master is the implied branch) <code>-- file1 file2</code> re-pulls those files from the git repo, clobbering them in your local directory. This is like <code>svn revert</code>.
  
 
== Diffing Changes ==
 
== Diffing Changes ==
  
Against your most recently committed changes
+
Against your most recently committed changes:
  
'''git diff'''
+
git diff
  
From your most recent changes to a past change
+
From your most recent changes to a past change:
  
'''git diff #HASHVALUE'''
+
git diff #HASHVALUE
  
Between any 2 changes
+
Between any 2 changes:
  
'''git diff #HASHVALUE1 #HASHVALUE1'''
+
git diff #HASHVALUE1 #HASHVALUE1
  
== Branches ==
+
== Branches ==
  
=== Creating a Branch ===
+
=== Creating a Branch ===
  
 
To create a new branch based on the current one, do:
 
To create a new branch based on the current one, do:
  
'''git branch &lt;branchname&gt;'''
+
git branch <branchname>
  
=== Changing Branches ===
+
=== Changing Branches ===
  
To change between branches do:
+
To change between branches, do:
  
'''git checkout &lt;branchname&gt;'''
+
git checkout <branchname>
  
=== Tracking a Branch ===
+
=== Tracking a Branch ===
  
If you want to work on a specific branch, you can track it, by creating a local version of it on which you can pull and push. If you have already pulled (or fetched) from origin, you should have all remote branches names:
+
If you want to work on a specific branch, you can track it, by creating a local version of it on which you can pull and push. If you have already pulled (or fetched) from origin, you should have all the names for the remote branches:
  
'''git branch -a'''
+
git branch -a
  
Will show all branches, local and remote. Choose a remote branch to track then do:
+
Will show all branches, local and remote. Choose a remote branch to track, then do:
  
'''git branch --track &lt;localbranchname&gt; remotes/origin/&lt;remotebranchname&gt;'''
+
git branch --track <localbranchname> remotes/origin/<remotebranchname>
  
 
A new local branch will be created, which will push and pull to the specific remote branch.
 
A new local branch will be created, which will push and pull to the specific remote branch.
  
** alternate method that also works
+
* Alternate method that also works:
 
+
'''git checkout -b <wanted_branch> origin/<wanted_branch>'''
+
 
+
== Resources &amp; References  ==
+
 
+
Git - SVN Crash Course at [http://git-scm.com/course/svn.html git-scm.com/course/svn.html]
+
 
+
Git for the lazy tutorial at [http://www.spheredev.org/wiki/Git_for_the_lazy www.spheredev.org/wiki/Git_for_the_lazy]
+
 
+
Git Video Tutorials at&nbsp; [http://gitcasts.com/ http://gitcasts.com/]&nbsp;&nbsp; (Several Excellent Video Tutorials)
+
  
The Git Community Book at [http://book.git-scm.com/ http://book.git-scm.com/]
+
git checkout -b <wanted_branch> origin/<wanted_branch>
  
The git-svn(1) Manual Page [http://www.kernel.org/pub/software/scm/git/docs/v1.6.3.3/git-svn.html] (git-svn = Bidirectional operation between a single Subversion branch and git)
+
== Resources &amp; References ==
  
The Git-Svn Cheat Sheet [http://cheat.errtheblog.com/s/gitsvn/]
+
* ''Git - SVN Crash Course'' at [http://git-scm.com/course/svn.html git-scm.com/course/svn.html]
 +
* ''Git for the lazy'' tutorial at [http://www.spheredev.org/wiki/Git_for_the_lazy www.spheredev.org/wiki/Git_for_the_lazy]
 +
* Git video tutorials at [http://gitcasts.com/ http://gitcasts.com/]&nbsp; (several excellent video tutorials)
 +
* ''The Git Community Book'' at [http://book.git-scm.com/ http://book.git-scm.com/]
 +
* [https://git-scm.com/doc Git reference, documents and videos] and [https://training.github.com/kit/downloads/github-git-cheat-sheet.pdf Git Cheat Sheet]
 +
* [http://www.kernel.org/pub/software/scm/git/docs/v1.6.3.3/git-svn.html The git-svn(1) Manual Page] (git-svn = Bidirectional operation between a single Subversion branch and git)
 +
* [http://cheat.errtheblog.com/s/gitsvn/ The Git-Svn Cheat Sheet]

Latest revision as of 11:25, 14 August 2023

This is an introduction to using git for OpenSimulator. If you just want to know the git cloning path, jump to #Cloning the Repository (for Non-Core Developers).


Contents

[edit] Installing Git

[edit] Linux

[edit] CLI

Git is provided as a package with all modern Linux distributions. Install the following packages depending on environment:

[edit] GUIs

git-gui
  • Debian, Ubuntu:
$ sudo apt-get install git-gui
$ git gui
git-cola
  • Debian, Ubuntu:
$ apt-get install git-cola
$ git-cola

[edit] Windows

Git is now integrated in recent Visual Studio versions. You can install it with Visual Studio Setup. Tortoise Git may still be useful.

Alternatively, you need to install two 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 manage all the line endings correctly, which will prevent merge issues in the future.

Msysgit1.png Msysgit2.png Msysgit3.png Msysgit4.png Msysgit5.png

[edit] macOS

If you have MacPorts installed, then open a Terminal window and run:

sudo port install git

Or you can even obtain the GitX GUI tool, either using sudo port install GitX, or as a direct download from the GitX Website and put it into application folder.

Alternatively, if you use the more popular Homebrew package manager, the command to run from Terminal is:

brew install git

Note that Apple already includes its own git under /usr/bin/git — usually several versions behind (but nevertheless fully functional). Homebrew will not overwrite Apple's own git. Instead, it will be symbolically linked to /usr/local/bin/git — it will be up to you to configure your shell to execute applications from /usr/local/bin/ before /usr/bin (by default, the reverse is true).

GitX is also available via Homebrew:

brew install GitX

Finally, note that, unlike MacPorts, Homebrew is not invoked with sudo (mostly for security reasons).

[edit] Configuring Git

Git has both a global config and a local config for each repo. As one might expect, local trumps global. The first important thing to do is set your name and email address, as that will be used in your commits.

On Linux / macOS this is done via:

git config user.email YOUR@EMAIL.ADDR
git config user.name "Your Name"

On Windows this is done with the config menu.

Config1.png Config2.png

To setup your Context Menu to make your options easier, select the Context Menu options as shown above and choose what you want to have displayed immediately.


Config3.png

[edit] Git Repositories for OpenSimulator

The URLs for the repositories are as follows:

Repository Developer URL Anon URL
opensim (main repository) ssh://opensimulator.org/var/git/opensim git://opensimulator.org/git/opensim

[edit] Cloning the Repository (for Core Developers)

If you are a core developer, use the developer URL above. If you aren't a core developer, use the Anon URL above. The initial clone will take a few minutes, as it needs to pull the entire change history. Don't be concerned about space, all the change history stored in git takes up less space than a single checked out copy of OpenSimulator. Welcome to the wonderful world of content addressable storage.

Unlike with svn, you can define multiple sources to pull from. So, if you initially start with an anon tree (which is read only), you can still later define the core tree (or some other remote target on GitHub/GitLab) and push to that.

[edit] Linux / macOS

Run the following on the command line:

git clone ssh://opensimulator.org/var/git/opensim

This will create an opensim-test directory locally.

[edit] Windows

Right click on the Desktop (or wherever) and select 'Git Clone...'

When prompted for a URL provide ssh://opensimulator.org/var/git/opensim. Your username and password will be the ones used for opensimulator.org.

[edit] Cloning the Repository (for Non-Core Developers)

git clone git://opensimulator.org/git/opensim

This is the equivalent of anonymous svn access.

[edit] Resolving git hash & revision numbers

These generate the bin/.version file which is used to identify the Git-Hash Revision.  The git hash is used to track the builds for troubleshooting and for filling Mantis Reports.  Without proper Version Identification, developers / contributors cannot locate & address problems within the source code, resulting in un-usable Mantis reports.  Please Version your Builds to help everyone make a better OpenSimulator.

Windows batchfile

Linux bash script

NOTE:  Older versions of Git — such as 1.6.0.4 — do not support the extra functions.  To make use of the above scripts it is recomended you update your Git installation to the most current version.  All versions are available from git-scm.com/.

(Note from 2023: if you're really using such a Jurassic version of git, you must upgrade to a newer one! At the very least, pick one from the 2.X branch).

[edit] Conceptual Changes from Subversion

Distributed source code control is a substantially different mental model than centralized source code control. If it freaks you out a bit, don't worry, everyone has that same reaction initially. This blog post is the best explanation that I've seen of the concepts involved.

For heavy users of Subversion, you should read the git / svn cheat sheet. This provides a very solid basis for making your changes. That being said, there are some conceptual changes to note:

  • Terminology
    • master is the name of the primary upstream branch (in Subversion terms, this is trunk).
    • origin is the name and location of the tree you cloned from.
  • All repositories are full peers to all other repositories. Your cloned git repo is all the history of the entire project, available locally. It means you can sync between any 2 clones of the repository, not just between your clone and the master repo. This lets people work together on changes not in master before submitting them.
  • Version numbers are SHA1 hashes, not sequential integers. This means referring to specific revisions is a bit more interesting. For most of the git commands, you only need to give it the first 6-8 digits of the hash for them to work.
  • Committing
    • Commits are local. This means they are fast (no network involved) and they are committed against the last state of the tree. Any conflict resolution will be handled after commits, during your next pull. This is slightly different than pull-resolve-then-commit model of Subversion.
    • By default, only files you explicitly git add are put into the commit. To get svn ci equivalency use git commit -a to commit all outstanding files (I think Tortoise handles this for you).
    • After making a commit you must then push it to a remote repository (probably origin). By default, you push only branches you have previously pushed, typically master.

The biggest real change is that Subversion dictates a very specific workflow. Git does not. Git allows for many different workflows, and lets each developer use the one that is best suited to his/herself.

[edit] Using Git like Subversion/trunk development

This is a set of quick instructions to use git like we do Subversion development today. It is targeted for core developers (so it assumes you are using ssh access), though most of it will work for non-developers by just changing a URL.

The instructions below are given using the command-line tool git. These options should all be available in the context menu on Tortoise Git (and on other GUIs) as well.

[edit] Getting the source code

git clone ssh://opensimulator.org/git/opensim-test

This is the equivalent of svn co.

Note: all other operations assume that you are in the git directory.

[edit] Updating your checkout

git pull

This is the equivalent of svn update.

[edit] Inspecting what has changed in your working tree

git status

This is the equivalent of svn status.

[edit] Committing a change

Either:

git add file1 file2 ...
git commit

or

git commit -a

By default, git does not add all files during a commit.

[edit] Pushing the committed change

The first time you do this you'll need to specify which branch to push to.

git push origin master

After the first time, a simple git push will be enough, as it defaults to origin, and now git knows that master should by synced to origin.

Important: Commits in git are local. They are not included in the main tree until you push them. This means you can create commits when you are not on the network and sync afterwards.

[edit] Setting the checkout directory to a specific revision

git reset --hard #HASHVALUE

This will effectively rewind the tree to the specific revision, and modify the checkout dir accordingly. This is equivalent to svn up -R#version.

git reset can also be useful if you screwed up commits and want to get rid of them

[edit] Resetting the tree to master (i.e. trunk)

git pull

per previous

[edit] Creating a Patch

git format-patch #HASHVALUE

This will create a patch suitable for attaching or emailing from a single commit. You can also specify a range of commits.

This is closest to svn diff > patchfile.txt for uncommitted changes in Subversion.

[edit] Applying a Git Patch

If someone has formatted a git patch you can apply it directly (including all file adds, file mode changes, and their change log entry) with:

preferred method (preserves creator info): git am --signoff patchfile.patch

this also works (try above method first): git apply patchfile.patch

[edit] Reverting a Change

git revert #HASHVALUE

This directly reverts the change, with a commit message stating that fact. There is no svn direct equivalence, though this is often accomplished through: svn diff -R revisions > revert.patch && patch -p0 < revert.patch && svn ci -m "reverting revisions"

[edit] Resetting part of the tree to master

git checkout -- file1 file2 ...

Checkout is an operation that populates the working directory from the git repository. Doing a git checkout (master is the implied branch) -- file1 file2 re-pulls those files from the git repo, clobbering them in your local directory. This is like svn revert.

[edit] Diffing Changes

Against your most recently committed changes:

git diff

From your most recent changes to a past change:

git diff #HASHVALUE

Between any 2 changes:

git diff #HASHVALUE1 #HASHVALUE1

[edit] Branches

[edit] Creating a Branch

To create a new branch based on the current one, do:

git branch <branchname>

[edit] Changing Branches

To change between branches, do:

git checkout <branchname>

[edit] Tracking a Branch

If you want to work on a specific branch, you can track it, by creating a local version of it on which you can pull and push. If you have already pulled (or fetched) from origin, you should have all the names for the remote branches:

git branch -a

Will show all branches, local and remote. Choose a remote branch to track, then do:

git branch --track <localbranchname> remotes/origin/<remotebranchname>

A new local branch will be created, which will push and pull to the specific remote branch.

  • Alternate method that also works:
git checkout -b <wanted_branch> origin/<wanted_branch>

[edit] Resources & References

Personal tools
General
About This Wiki