Here are the instructions I was given:
-------- Original Message --------
On Sun, 2009-11-01 at 20:20 -0600, Chuck & Nicole Cannon wrote:
Just let me know where you put it and make sure I can easily
contribute.
I've created a project on
Gitorious.org and imported the source
you just emailed.
The project URL is:
http://gitorious.org/hai
Chuck and Rick, please create an account on
gitorious.org and then I'll
add you to the "hai-developers" team/group (the owner of the project)
as an Administrator.
Here is your git quick start guide.
If you haven't done so already, download and install Git.
Then:
git config --global user.name "Your full name"
git config --global user.email "your...@goeshere.com"
You can then pull down the the current trunk with:
git clone git://gitorious.org/hai/hai.git
Since you have commit privileges, redefine the "push" URL to the
read-write URL with:
git remote rm origin # delete existing definition
git remote add origin g...@gitorious.org:hai/hai.git
git push origin master
Now your ready to develop!
<make changes to the code>
git status # view the changes
git commit # commit your changes (locally)
git push # send your changes up gitorious.org
Git advanced features
* Local branches
* Amending/merging unpublished commits
For a concise walkthrough of git, take a look at:
http://cworth.org/hgbook-git/tour/