diff options
author | 2006-08-09 11:03:11 +0000 | |
---|---|---|
committer | 2006-08-09 11:03:11 +0000 | |
commit | 4b78be8891e25090831d1c8a0b013713570ad2ed (patch) | |
tree | 14da086a3c73b288e0e910f05d49269b4e5cf44b | |
parent | c7d8e7abfac5ddd49d58a88630297822745a0d05 (diff) |
update the moving & copying rules as disscussed on mplayer-dev + some (but not all as iam lazy) fixes by the wanderer
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19363 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | DOCS/tech/svn-howto.txt | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/DOCS/tech/svn-howto.txt b/DOCS/tech/svn-howto.txt index d4bbc37694..3385dde736 100644 --- a/DOCS/tech/svn-howto.txt +++ b/DOCS/tech/svn-howto.txt @@ -127,13 +127,20 @@ I. BASICS: include filenames in log messages, Subversion provides that information. -8. Renaming/moving files or contents of files: +8. Renaming/moving/copying files or contents of files: - svn move <source> <destination> + svn move <source> <destination> / svn copy <source> <destination> svn commit <source> <destination> - Do not move or rename files before discussing it on the mplayer-dev-eng - mailing list first! + Do not move, rename or copy files maintained by others than yourself without + discussing it on the mplayer-dev-eng mailing list first! + + Always try to preserve the history and minimize the size of svn diff, don't + copy or move a file by svn delete and svn add, always use svn move or + svn copy instead + + To split a file in 2 use svn copy and remove the lines which are not needed + from each file Don't do a lot of cut'n'paste from one file to another without a very good reason and discuss it on the mplayer-dev-eng mailing list first. It will make |