summaryrefslogtreecommitdiffstats
path: root/git-rm.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2007-01-16 22:05:10 +0000
committerJunio C Hamano <junio@hera.kernel.org>2007-01-16 22:05:10 +0000
commit1ce39abefc28fb6bc3dbd598910d69660344da9c (patch)
tree8ca0ac1ff30ccdfd5572f355dba2786440ae4a34 /git-rm.txt
parent97c11c5144898db4f8848b34bc5f26603c5b6b6a (diff)
downloadgit-htmldocs-1ce39abefc28fb6bc3dbd598910d69660344da9c.tar.gz
Autogenerated HTML docs for v1.5.0-rc1-g8bef
Diffstat (limited to 'git-rm.txt')
-rw-r--r--git-rm.txt12
1 files changed, 4 insertions, 8 deletions
diff --git a/git-rm.txt b/git-rm.txt
index 3a8f279e1..6feebc040 100644
--- a/git-rm.txt
+++ b/git-rm.txt
@@ -60,21 +60,17 @@ a file that you have not told git about does not remove that file.
EXAMPLES
--------
git-rm Documentation/\\*.txt::
-
Removes all `\*.txt` files from the index that are under the
- `Documentation` directory and any of its subdirectories. The
- files are not removed from the working tree.
+ `Documentation` directory and any of its subdirectories.
+
Note that the asterisk `\*` is quoted from the shell in this
example; this lets the command include the files from
subdirectories of `Documentation/` directory.
git-rm -f git-*.sh::
-
- Remove all git-*.sh scripts that are in the index. The files
- are removed from the index, and from the working
- tree. Because this example lets the shell expand the
- asterisk (i.e. you are listing the files explicitly), it
+ Remove all git-*.sh scripts that are in the index.
+ Because this example lets the shell expand the asterisk
+ (i.e. you are listing the files explicitly), it
does not remove `subdir/git-foo.sh`.
See Also