summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-27 00:12:27 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-27 00:12:27 +0000
commit3a6d1b8c4dfb289168abc0e9ee088c8edef8376c (patch)
tree1aae7a18460eabc666a7cea2b6e7028f37d42d1a /DOCS
parent7f1101eddfdd16775089d8ed59d5c9fe519dc1d0 (diff)
downloadmpv-3a6d1b8c4dfb289168abc0e9ee088c8edef8376c.tar.bz2
mpv-3a6d1b8c4dfb289168abc0e9ee088c8edef8376c.tar.xz
extended a bit
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3150 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/tech/cvs-howto.txt19
1 files changed, 16 insertions, 3 deletions
diff --git a/DOCS/tech/cvs-howto.txt b/DOCS/tech/cvs-howto.txt
index 587656102b..0e9d933904 100644
--- a/DOCS/tech/cvs-howto.txt
+++ b/DOCS/tech/cvs-howto.txt
@@ -19,10 +19,17 @@ I. TECH SIDE:
export CVS_RSH=ssh
cvs -z3 -d:ext:LOGIN@mplayerhq.hu:/cvsroot/mplayer co main
+ NOTE: cvs -d:pserver: mode doesn't allow writting, even with password!
+
3. Commiting changes:
cvs -z3 commit -m "comment - what and why did you change" filename(s)
+ Do not use such comments: "bugfix." or "files changed" or "dunno"
+ You don't have to include filename in comment, as comments are linked
+ to files. If you have different comments for files, commit them separated,
+ not at same time.
+
4. Adding new files/dirs:
cvs add filename/dirname
@@ -36,14 +43,19 @@ I. TECH SIDE:
cvs -z3 diff -u filename(s)
+ it's recommended to check changes first, before commit. especially if you
+ forget what did you change :)
+ and this way you will see if your patch has debug stuff or indenting change,
+ and you can fix it before commiting and triggering me to use cvs-backup.
+
7. Check changelog:
cvs -z3 log filename(s)
8. Rename/move files:
- you can't do that. ask CVS server admin (A'rpi) to do it.
- (do not remove & re-add file - it will kill changelog!)
+ you can NOT do that. ask CVS server admin (A'rpi) to do it!
+ do NOT remove & re-add file - it will kill changelog!!!!
If you have any tech problems with cvs server, contact me:
A'rpi <arpi@thot.banki.hu>
@@ -86,6 +98,7 @@ II. POLICY / RULES:
8. I've developed something called CVS-Backup. It archives CVS
repository after each commit - so I can reverse your commits
(without messing up changelog) if they are bad.
-
+ If you think your bugfix or other change was bad and unneeded,
+ ask me to reverse it instead of commiting previous version!
I think our rules aren't too hard. If you have comments, contact me.