From: Derrick Brashear Date: Tue, 7 Jul 2009 19:26:48 +0000 (+0000) Subject: none X-Git-Url: http://git.openafs.org/?p=openafs-wiki.git;a=commitdiff_plain;h=bc29a275dd5fe4c6f80b9910b1fa8fdab730eaf6 none --- diff --git a/AFSLore/GitDevelopers.mdwn b/AFSLore/GitDevelopers.mdwn index d4c3bfd..f63e218 100644 --- a/AFSLore/GitDevelopers.mdwn +++ b/AFSLore/GitDevelopers.mdwn @@ -207,11 +207,11 @@ Assuming all has gone well, this will have added the entry to the code review qu It's possible that your modifications won't be accepted first time. In this case, you need to revise your changes, and resubmit them to gerrit. Please note that this should always be done by modifying your original changeset, _not_ by submitting a new change that makes the required fixes. Either git commit --amend, or git rebase should be used to combine your changes with the original changeset, and then you should push this to gerrit with - git push ssh://gerrit.openafs.org/openafs.git :refs/changes/ + git push ssh://gerrit.openafs.org/openafs.git :refs/changes/ -(where is the hash of the revised change, and <number> is the change number you received when you originally submitted the patch) +(where <hash> is the sha1 hash of the revised change, and <number> is the change number you received when you originally submitted the patch) -You can obtain the sha1 of a commit by using 'git show' (if it is on the tip of your current branch), or 'git log' (if it is in your history) +You can obtain the sha1 hash of a commit by using 'git show' (if it is on the tip of your current branch), or 'git log' (if it is in your history) Other mechanisms of listing the change to push are available - see for full details.