Difference between revisions of "Git"

From Openembedded.org
Jump to: navigation, search
(formatting)
(OpenEmbedded Git repository)
Line 10: Line 10:
 
To use the git repository:
 
To use the git repository:
 
* Anonymous clone.  By default, a clone now checks out the org.openembedded.dev branch.
 
* Anonymous clone.  By default, a clone now checks out the org.openembedded.dev branch.
** <pre>git clone git://git.openembedded.net/org.openembedded.dev</pre>
+
  git clone git://git.openembedded.net/org.openembedded.dev
 
* checkout a different branch:
 
* checkout a different branch:
** <pre>git checkout --track -b <branch> origin/<branch></pre>
+
  git checkout --track -b <branch> origin
 
* see other branches that are available:
 
* see other branches that are available:
** <pre>git branch -r</pre>
+
  git branch -r
 
* Update your branch
 
* Update your branch
** <pre>git pull</pre>
+
  git pull
  
 
and if your key is registered, push/pull from:
 
and if your key is registered, push/pull from:

Revision as of 14:25, 9 October 2008

OpenEmbedded Git repository

Git repository that currently mirrors the main Monotone repository (test installation).

Web interfaces:

To use the git repository:

  • Anonymous clone. By default, a clone now checks out the org.openembedded.dev branch.
 git clone git://git.openembedded.net/org.openembedded.dev
  • checkout a different branch:
 git checkout --track -b <branch> origin
  • see other branches that are available:
 git branch -r
  • Update your branch
 git pull

and if your key is registered, push/pull from:

ssh://gittrial@git.openembedded.net/org.openembedded.dev

Other Repositories of Interest


To add a branch mirroring the openmoko tree, do the following:

  • git remote add openmoko.org git://git.openmoko.org/git/openmoko.git
  • git fetch openmoko.org
  • git branch -r
  • gitk openmoko.org/org.openmoko.asu.stable
  • git diff origin/org.openembedded.dev openmoko.org/org.openmoko.asu.stable
  • git diff origin/org.openembedded.dev openmoko.org/org.openmoko.asu.stable classes
  • git checkout -b org.openmoko.asu.stable --track openmoko.org/org.openmoko.asu.stable

Monotone to Git Conversion Issues

Why Git

Why are we switching:

  • better support for branching and merging (this is where git shines)
  • much faster
  • much larger user base -- many people doing OE work are already using git for kernel work

Mail list discussions on the topic: