From b69bb54c2f0a4344dc92ac422e5a4b6f5282be7e Mon Sep 17 00:00:00 2001 From: PlasmaSheep Date: Tue, 22 Jun 2010 16:47:00 +0000 Subject: [PATCH] Added about commit rights. (Commit created by redmine exporter script from page "Git" version 13) --- Git.textile | 1 + 1 file changed, 1 insertion(+) diff --git a/Git.textile b/Git.textile index ab671dd..b2d18f2 100644 --- a/Git.textile +++ b/Git.textile @@ -70,6 +70,7 @@ 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
-- 2.39.2