Importing your project: Difference between revisions
No edit summary |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
{{TOCright}} |
{{TOCright}} |
||
If you |
If you had a project you wanted us to [[Project hosting|host]] for you, including a source repository (and potentially any related webpages), this page was for you. You will have filled out a successful [[Project hosting application|application]] to get started. |
||
---- |
---- |
||
We don't have the means to let developers create their own trees on the OLPC servers, so the following assumes you're using a central shared tree for the project. |
|||
If you're using the one maintainer model, please ask us to create any other trees you need. We're working on adding the functionality to git-shell that will let you do this without our intervention in the future. |
If you're using the one maintainer model, please ask us to create any other trees you need. We're working on adding the functionality to git-shell that will let you do this without our intervention in the future. |
||
== |
== Install git == |
||
Install Git on your machine. See [[Git#Installation]] for details. |
|||
First, you'll need to fetch and install [[Git]] on your machine. The tarball with the latest version is always available at the [http://git.or.cz git site], and you might find your distribution provides packages. You can expect that the OLPC servers will always be running close to the latest version of the git tools. |
|||
== Identify yourself == |
|||
:In Ubuntu 7/Feisty and Debian Etch (and presumably earlier) "git" still refers to gitfm, an unrelated tool. To fix in feisty: |
|||
⚫ | |||
sudo apt-get install git-core cogito |
|||
sudo update-alternatives --config git |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
If your project is already in a local git tree, you may skip this step. Otherwise, change into your project directory and initialize the tree: |
If your project is already in a local git tree, you may skip this step. Otherwise, change into your project directory and initialize the tree: |
||
Line 26: | Line 30: | ||
$ cd MYPROJECT |
$ cd MYPROJECT |
||
$ git init |
$ git init |
||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
</pre> |
</pre> |
||
Line 42: | Line 39: | ||
</pre> |
</pre> |
||
== |
== Pointing the tree at the OLPC server == |
||
You now need to tell git that your pushes go to the OLPC system. |
You now need to tell git that your pushes go to the OLPC system. |
||
Having submitted a [[Project_hosting_application|project hosting request]], you will have received a project path in the body of the email message approving your request. Please use that path as your URL as you follow the instructions below: |
|||
Run one of the following two commands, depending on whether you requested a |
Run one of the following two commands, depending on whether you requested a |
||
Line 62: | Line 59: | ||
Obviously, replace MYUSER and MYPROJECT with the project name and username you received. |
Obviously, replace MYUSER and MYPROJECT with the project name and username you received. |
||
== |
== Performing the initial push == |
||
To do the initial push of your project to the OLPC server, run: |
To do the initial push of your project to the OLPC server, run: |
||
Line 73: | Line 70: | ||
* Ensure that your private SSH key (root/.ssh/id_dsa) has permissions set to only be readable by your user name, then try "git push --all" again. |
* Ensure that your private SSH key (root/.ssh/id_dsa) has permissions set to only be readable by your user name, then try "git push --all" again. |
||
* Save your source tree and perform a "git pull" the tree should be |
* Save your source tree and perform a "git pull" the tree should be intact, but restore any files that may be missing or modified. |
||
== |
== Subsequent pushes == |
||
For subsequent pushes, you don't generally need to use the --all parameter anymore, so |
For subsequent pushes, you don't generally need to use the --all parameter anymore, so |
||
Line 100: | Line 97: | ||
Will do the trick. |
Will do the trick. |
||
Note: Omitting --all will update all branches that are already present on the OLPC server. If you add new branches you will need to use --all again. |
|||
== |
== Checking out your tree == |
||
To verify that everything works, attempt to clone your tree from the OLPC server within your /tmp directory: |
To verify that everything works, attempt to clone your tree from the OLPC server within your /tmp directory: |
||
Line 113: | Line 110: | ||
That's it! Enjoy. |
That's it! Enjoy. |
||
==See also== |
== See also == |
||
*[[Git]] |
|||
{{:Git/See also}} |
|||
[[Category:Software development]] |
[[Category:Software development]] |
Latest revision as of 05:50, 2 July 2014
If you had a project you wanted us to host for you, including a source repository (and potentially any related webpages), this page was for you. You will have filled out a successful application to get started.
We don't have the means to let developers create their own trees on the OLPC servers, so the following assumes you're using a central shared tree for the project.
If you're using the one maintainer model, please ask us to create any other trees you need. We're working on adding the functionality to git-shell that will let you do this without our intervention in the future.
Install git
Install Git on your machine. See Git#Installation for details.
Identify yourself
Tell git who you are:
$ git config user.name "FirstName LastName" $ git config user.email "user@example.com"
Version your project locally
If your project is already in a local git tree, you may skip this step. Otherwise, change into your project directory and initialize the tree:
$ cd MYPROJECT $ git init
Add your project files to git, and commit the initial tree:
$ git add . $ git commit -a -m 'Initial import'
Pointing the tree at the OLPC server
You now need to tell git that your pushes go to the OLPC system.
Having submitted a project hosting request, you will have received a project path in the body of the email message approving your request. Please use that path as your URL as you follow the instructions below:
Run one of the following two commands, depending on whether you requested a
Central Tree:
$ git remote add origin git+ssh://MYUSER@dev.laptop.org/git/projects/MYTREE
Personal Tree:
$ git remote add origin git+ssh://MYUSER@dev.laptop.org/git/users/MYUSER/MYTREE
Obviously, replace MYUSER and MYPROJECT with the project name and username you received.
Performing the initial push
To do the initial push of your project to the OLPC server, run:
$ git push --all
If this "git push --all" fails:
- Ensure that your private SSH key (root/.ssh/id_dsa) has permissions set to only be readable by your user name, then try "git push --all" again.
- Save your source tree and perform a "git pull" the tree should be intact, but restore any files that may be missing or modified.
Subsequent pushes
For subsequent pushes, you don't generally need to use the --all parameter anymore, so
Get the status of how a commit will go:
$ git status
use "git add", git rm and or "git rm -rf" to adjust what will be checked in. If you have not added or removed any files you don't have to use git add, you may just use commit -a, this will commit all the modified files already in the git tree.
$ git commit <-a>
this will bring up an editor where you enter comments about what is going on. Note that the first line of this file will become the tag at the top of your tree
$ git push
Will do the trick.
Note: Omitting --all will update all branches that are already present on the OLPC server. If you add new branches you will need to use --all again.
Checking out your tree
To verify that everything works, attempt to clone your tree from the OLPC server within your /tmp directory:
$ cd /tmp $ git clone git://dev.laptop.org/projects/MYPROJECT $ ls MYPROJECT
That's it! Enjoy.
See also
- Git
- Using a central git tree
- Importing your project
- Creating a personal git tree
- Git tips
- Project hosting
- git home page
- Read more about git on Wikipedia
- Freedesktop Git
- Guide to git for SVN users