summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--site/git/index.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/site/git/index.php b/site/git/index.php
index 46e6cb5..1ebedd6 100644
--- a/site/git/index.php
+++ b/site/git/index.php
@@ -106,15 +106,14 @@
<p>
<?php echo gettext("The status command will show any untracked files that you have. Add them using <b>git add path/to/file</b>. You should also add any other files that are listed as modified in the git status. If there are deleted files in the git status, you can use <b>git rm path/to/file</b>. As long as you have added all the untracked files, it is generally easier to use:"); ?><br/>
- $ <b>git commit -a -s</b><br/>
- <?php echo gettext("(instead of <b>git commit -s</b>)"); ?><br/>
- The <i>-s</i> parameter adds a sign-off-by to the commit message. This is highly recommended.
+ $ <b>git commit -a</b><br/>
+ <?php echo gettext("(instead of <b>git commit</b>)"); ?>
</p>
<p>
<?php echo gettext("If you need to make a change to the current commit, you can do so with:"); ?><br/>
- $ <b>git commit -s --amend</b><br/>
+ $ <b>git commit --amend</b><br/>
<?php echo gettext("or:"); ?><br/>
- $ <b>git commit -a -s --amend</b>
+ $ <b>git commit -a --amend</b>
</p>
<p>
<?php echo gettext("In your local git tree, you can use this to check your commits:"); ?><br/>
@@ -178,4 +177,4 @@
<?php
$strHtml = ob_get_clean();
echo miniHtml($strHtml);
-?>
+?> \ No newline at end of file