diff options
author | Romain Tartière <romain@FreeBSD.org> | 2017-10-17 17:43:45 +0000 |
---|---|---|
committer | Romain Tartière <romain@FreeBSD.org> | 2017-10-17 17:43:45 +0000 |
commit | d0cf868b6d035a626f1628b727abebd6adb82907 (patch) | |
tree | 0321ae0d2f2d46f39f52bccb95e0a77d04f775e3 /en_US.ISO8859-1/articles/committers-guide | |
parent | 51c7bed8dc5937fa0804a894bf3bca954fe82202 (diff) |
Notes
Diffstat (limited to 'en_US.ISO8859-1/articles/committers-guide')
-rw-r--r-- | en_US.ISO8859-1/articles/committers-guide/article.xml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/en_US.ISO8859-1/articles/committers-guide/article.xml b/en_US.ISO8859-1/articles/committers-guide/article.xml index 8b7bb72bad..29939120a7 100644 --- a/en_US.ISO8859-1/articles/committers-guide/article.xml +++ b/en_US.ISO8859-1/articles/committers-guide/article.xml @@ -960,14 +960,15 @@ You need a Passphrase to protect your secret key.</screen> <para>This command creates a copy of <filename>foo.c</filename> named <filename>bar.c</filename>, - with the new file also under version control:</para> + with the new file also under version control and with the full + history of <filename>foo.c</filename>:</para> <screen>&prompt.user; <userinput>svn copy <replaceable>foo.c</replaceable> <replaceable>bar.c</replaceable></userinput></screen> - <para>The example above is equivalent to:</para> - - <screen>&prompt.user; <userinput>cp foo.c bar.c</userinput> -&prompt.user; <userinput>svn add bar.c</userinput></screen> + <para>This is usually preferred to copying the file with + <command>cp</command> and adding it to the repository with + <command>svn add</command> because this way the new file does not + inherit the original one's history.</para> <para>To move and rename a file:</para> |