* [PATCH 2/2] git-rm doc: Describe how to sync index & work tree
@ 2009-12-07 18:35 Björn Gustavsson
2009-12-07 21:08 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Björn Gustavsson @ 2009-12-07 18:35 UTC (permalink / raw)
To: git; +Cc: Junio C Hamano
Newcomers to git that want to remove from the index only the
files that have disappeared from the working tree will probably
look for a way to do that in the documentation for 'git rm'.
Therefore, describe how that can be done (even though it involves
other commands than 'git rm'). Based on a suggestion by Junio,
but re-arranged and rewritten to better fit into the style of
command reference.
While at it, change a single occurrence of "work tree" to "working
tree" for consistency.
Signed-off-by: Björn Gustavsson <bgustavsson@gmail.com>
---
To better fit a reference page (IMO), I have changed the
order of the commands, and have put the straightforward
command last as it is the least useful, and I have removed
the "bad examples" (using two commands instead of simply
'git add -A'). I realize that those examples have their value,
too, but since most people scan a reference page quickly
to find what they'll need, it will just confuse them.
Documentation/git-rm.txt | 53 +++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 52 insertions(+), 1 deletions(-)
diff --git a/Documentation/git-rm.txt b/Documentation/git-rm.txt
index d4162f6..c622972 100644
--- a/Documentation/git-rm.txt
+++ b/Documentation/git-rm.txt
@@ -13,7 +13,7 @@ DESCRIPTION
-----------
Remove files from the index, or from the working tree and the index.
`git rm` will not remove a file from just your working directory.
-(There is no option to remove a file only from the work tree
+(There is no option to remove a file only from the working tree
and yet keep it in the index; use `/bin/rm` if you want to do that.)
The files being removed have to be identical to the tip of the branch,
and no updates to their contents can be staged in the index,
@@ -81,6 +81,57 @@ two directories `d` and `d2`, there is a difference between
using `git rm \'d\*\'` and `git rm \'d/\*\'`, as the former will
also remove all of directory `d2`.
+REMOVING FILES THAT HAVE DISAPPEARED FROM THE FILESYSTEM
+--------------------------------------------------------
+There is no option for `git rm` to remove from the index only
+the paths that have disappeared from the filesystem. However,
+depending on the use case, there are several ways that can be
+done.
+
+Using "git commit -a"
+~~~~~~~~~~~~~~~~~~~~~
+If you intend that your next commit should record all modifications
+of tracked files in the working tree and record all removals of
+files that have been removed from the working tree with `rm`
+(as opposed to `git rm`), use `git commit -a`, as it will
+automatically notice and record all removals.
+
+Using "git add -A"
+~~~~~~~~~~~~~~~~~~
+When accepting a new code drop for a vendor branch, you probably
+want to record both the removal of paths and additions of new paths
+as well as modifications of existing paths.
+
+Typically you would first remove all tracked files from the working
+tree using this command:
+
+----------------
+git ls-files -z | xargs -0 rm -f
+----------------
+
+and then "untar" the new code in the working tree. Alternately
+you could "rsync" the changes into the working tree.
+
+After that, the easiest way to record all removals, additions, and
+modifications in the working tree is:
+
+----------------
+git add -A
+----------------
+
+See linkgit:git-add[1].
+
+Other ways
+~~~~~~~~~~
+If all you really want to do is to remove from the index the files
+that are no longer present in the working tree (perhaps because
+your working tree is dirty so that you cannot use `git commit -a`),
+use the following command:
+
+----------------
+git diff --name-only --diff-filter=D -z | xargs -0 git rm --cached
+----------------
+
EXAMPLES
--------
git rm Documentation/\\*.txt::
--
1.6.6.rc1.31.g1a56b
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] git-rm doc: Describe how to sync index & work tree
2009-12-07 18:35 [PATCH 2/2] git-rm doc: Describe how to sync index & work tree Björn Gustavsson
@ 2009-12-07 21:08 ` Junio C Hamano
2009-12-08 6:12 ` Björn Gustavsson
2009-12-08 6:19 ` Björn Gustavsson
0 siblings, 2 replies; 4+ messages in thread
From: Junio C Hamano @ 2009-12-07 21:08 UTC (permalink / raw)
To: Björn Gustavsson; +Cc: git
Looks sensible.
I think mentioning "add -u" in the same section as "commit -a" would be
helpful, as these two are more for user's own development (as opposed to
vendor-code-drop). I'd perhaps squash something like this in. Please say
"yes", "don't, it is horrible", or something in between ;-)
--
Documentation/git-rm.txt | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/Documentation/git-rm.txt b/Documentation/git-rm.txt
index c622972..42161d7 100644
--- a/Documentation/git-rm.txt
+++ b/Documentation/git-rm.txt
@@ -94,7 +94,8 @@ If you intend that your next commit should record all modifications
of tracked files in the working tree and record all removals of
files that have been removed from the working tree with `rm`
(as opposed to `git rm`), use `git commit -a`, as it will
-automatically notice and record all removals.
+automatically notice and record all removals. `git add -u`
+can be used for a similar effect without commiting.
Using "git add -A"
~~~~~~~~~~~~~~~~~~
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] git-rm doc: Describe how to sync index & work tree
2009-12-07 21:08 ` Junio C Hamano
@ 2009-12-08 6:12 ` Björn Gustavsson
2009-12-08 6:19 ` Björn Gustavsson
1 sibling, 0 replies; 4+ messages in thread
From: Björn Gustavsson @ 2009-12-08 6:12 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
2009/12/7 Junio C Hamano <gitster@pobox.com>:
> Looks sensible.
>
> I think mentioning "add -u" in the same section as "commit -a" would be
> helpful, as these two are more for user's own development (as opposed to
> vendor-code-drop). I'd perhaps squash something like this in. Please say
> "yes", "don't, it is horrible", or something in between ;-)
Yes. :-)
--
Björn Gustavsson, Erlang/OTP, Ericsson AB
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] git-rm doc: Describe how to sync index & work tree
2009-12-07 21:08 ` Junio C Hamano
2009-12-08 6:12 ` Björn Gustavsson
@ 2009-12-08 6:19 ` Björn Gustavsson
1 sibling, 0 replies; 4+ messages in thread
From: Björn Gustavsson @ 2009-12-08 6:19 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
2009/12/7 Junio C Hamano <gitster@pobox.com>:
> I think mentioning "add -u" in the same section as "commit -a" would be
> helpful, as these two are more for user's own development (as opposed to
> vendor-code-drop). I'd perhaps squash something like this in. Please say
> "yes", "don't, it is horrible", or something in between ;-)
Yes, but...
> -automatically notice and record all removals.
> +automatically notice and record all removals. `git add -u`
> +can be used for a similar effect without commiting.
s/commiting/committing/
--
Björn Gustavsson, Erlang/OTP, Ericsson AB
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-12-08 6:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-07 18:35 [PATCH 2/2] git-rm doc: Describe how to sync index & work tree Björn Gustavsson
2009-12-07 21:08 ` Junio C Hamano
2009-12-08 6:12 ` Björn Gustavsson
2009-12-08 6:19 ` Björn Gustavsson
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.