From: PlasmaSheep Date: Tue, 22 Jun 2010 19:34:00 +0000 (+0000) Subject: (Commit created by redmine exporter script from page "Git" version 14) X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e0722c5393c9194646e2bc4b59b0d9efc2001eb1;p=xonotic%2Fxonotic.wiki.git (Commit created by redmine exporter script from page "Git" version 14) --- diff --git a/Git.textile b/Git.textile index b2d18f2..ab671dd 100644 --- a/Git.textile +++ b/Git.textile @@ -70,7 +70,6 @@ Some useful commands: * To commit ALL changed files (without adding new files):
git commit -a
or again:
git commit -am "message"
In git all your changes are local. This includes your commits! If you want your branch to be updated on the remote repository, you have to push it. -*Note:* Pushing requires commit rights to the repository. You may ask divVerent or merlijn for these rights, but do not bother them unless you have an ssh key you would can show them. * Usually, you can push your changes doing:
git push me/feature1
* If your branch is not a tracking branch:
git push origin me/feature1
or if you have an older git version you may have to do
git push origin me/feature1:refs/heads/me/feature1