diff options
author | Thomas Rast <trast@student.ethz.ch> | 2010-01-07 17:49:12 +0100 |
---|---|---|
committer | Thomas Rast <trast@student.ethz.ch> | 2010-01-10 13:01:25 +0100 |
commit | ca768288b650a4929bc1d58783a929a9a792e30e (patch) | |
tree | aeb3937cf3f137cb8aeabeb74b11eb3c0e34bf37 /Documentation/git-add.txt | |
parent | e330d8ca1a9ec38ce40b0f67123b1dd893f0b31c (diff) | |
download | git-ca768288b650a4929bc1d58783a929a9a792e30e.tar.gz |
Documentation: format full commands in typewriter font
Use `code snippet` style instead of 'emphasis' for `git cmd ...`
according to the following rules:
* The SYNOPSIS sections are left untouched.
* If the intent is that the user type the command exactly as given, it
is `code`.
If the user is only loosely referred to a command and/or option, it
remains 'emphasised'.
Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Diffstat (limited to 'Documentation/git-add.txt')
-rw-r--r-- | Documentation/git-add.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-add.txt b/Documentation/git-add.txt index 1f1b19996b..f74fcf3737 100644 --- a/Documentation/git-add.txt +++ b/Documentation/git-add.txt @@ -39,7 +39,7 @@ The `git add` command will not add ignored files by default. If any ignored files were explicitly specified on the command line, `git add` will fail with a list of ignored files. Ignored files reached by directory recursion or filename globbing performed by Git (quote your -globs before the shell) will be silently ignored. The `add` command can +globs before the shell) will be silently ignored. The 'git add' command can be used to add ignored files with the `-f` (force) option. Please see linkgit:git-commit[1] for alternative ways to add content to a |