]> andersk Git - gssapi-openssh.git/blob - openssh/CVSNOTES
o Add note about 20021018 merge.
[gssapi-openssh.git] / openssh / CVSNOTES
1 CVSNOTES
2 ========
3
4 This file contains notes regarding the files stored in the openssh CVS module that
5 contains the GSI-OpenSSH code.  Consider it a living document.
6
7   [ Generic Tag Merging ]
8
9     1. Set up your environment to point to the correct CVS repository.
10
11           $ export CVSROOT="/afs/ncsa/projects/globus/Repository"
12
13     2. Commit any locally-modified files and tag the repository before the merge.
14
15           $ cvs update
16           $ cvs commit
17           $ cvs tag <tagName>-premerge
18
19     2. Merge the changes from your original base merge point to your new base merge
20        point.
21
22           $ cvs update -kk -j<originalBase> -j<newBase>
23
24     3. Retrieve a list of any conflicts that were discovered as a result of the
25        merge.
26
27           $ cvs -n update | grep C
28
29     4. Resolve all of the conflicts in each of the listed files.
30
31     5. Commit all of the files in your working directory to the repository and tag
32        the repository.
33
34           $ cvs commit
35           $ cvs tag <tagName>-merged
36
37   [ History ]
38
39     2002/09/23
40     ----------
41       Action: Merge
42         - occurred on: GPT branch (OPENSSH_3_1P1_GSSAPI_GPT-branch)
43         - original base: OPENSSH_3_4P1_GSI_20020701
44         - new base: OPENSSH_3_4P1_GSI_20020923
45       Conflicts: 1
46         - configure.ac
47             resolved by ignoring mainline changes and keeping the text that was
48             originally in the file on this branch.  (We require a specified flavor type
49             where the trunk can compensate in that case.)
50
51     2002/09/24
52     ----------
53       Action: Merge
54         - occurred on: GPT branch (OPENSSH_3_1P1_GSSAPI_GPT-branch)
55         - original base: OPENSSH_3_4P1_GSI_20020923
56         - new base: OPENSSH_3_4P1_GSI_20020924
57       Conflicts: 0
58
59     2002/09/26
60     ----------
61       Action: Merge
62         - occurred on: GPT branch (OPENSSH_3_1P1_GSSAPI_GPT-branch)
63         - original base: OPENSSH_3_4P1_GSI_20020924
64         - new base: OPENSSH_3_4P1_GSI_20020926
65       Conflicts: 0
66
67     2002/10/08
68     ----------
69       Action: Merge
70         - occurred on: GPT branch (OPENSSH_3_1P1_GSSAPI_GPT-branch)
71         - original base: OPENSSH_3_4P1_GSI_20020926
72         - new base: OPENSSH_3_4P1_GSI_20021008
73       Conflicts: 0
74
75     2002/10/18
76     ----------
77       Action: Merge
78         - occurred on: GPT branch (OPENSSH_3_1P1_GSSAPI_GPT-branch)
79         - original base: OPENSSH_3_4P1_GSI_20021008
80         - new base: OPENSSH_3_5P1_GSI_20021018
81       Conflicts: 1
82         - Makefile.in
83             resolved by removing check-user and adding check-config.
This page took 0.05133 seconds and 5 git commands to generate.