Merge branch 'vendor/BINUTILS225'
[dragonfly.git] / share / man / man7 / development.7
1 .\"
2 .\" Copyright (c) 2008
3 .\"     The DragonFly Project.  All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\"
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in
13 .\"    the documentation and/or other materials provided with the
14 .\"    distribution.
15 .\" 3. Neither the name of The DragonFly Project nor the names of its
16 .\"    contributors may be used to endorse or promote products derived
17 .\"    from this software without specific, prior written permission.
18 .\"
19 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 .\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22 .\" FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
23 .\" COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24 .\" INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
25 .\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27 .\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 .\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
29 .\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .Dd April 2, 2013
33 .Dt DEVELOPMENT 7
34 .Os
35 .Sh NAME
36 .Nm development
37 .Nd quick starter for development with the DragonFly codebase
38 .Sh DESCRIPTION
39 .Dx
40 uses the
41 .Xr git 1
42 distributed revision control system.
43 If it is not already on the system, it needs to be installed via
44 .Xr dports 7
45 .Pa ( devel/git ) .
46 .Pp
47 The
48 .Sx EXAMPLES
49 section gives initial information to get going with development on
50 .Dx .
51 Please refer to the
52 .Xr git 1
53 manual pages and other related documents for further information on git's
54 capabilities and how to use them.
55 The
56 .Sx SEE ALSO
57 section below has some links.
58 .Pp
59 For information on how to build the
60 .Dx
61 system from source code, see
62 .Xr build 7 .
63 For information on how to build the LiveCD, LiveDVD or thumb drive image, see
64 .Xr release 7 .
65 .Pp
66 For a specification of
67 .Dx Ap s
68 preferred source code style, refer to
69 .Xr style 9 .
70 An
71 .Xr emacs 1
72 function to switch C-mode to this style (more or less) can be found in
73 .Pa /usr/share/misc/dragonfly.el .
74 For
75 .Xr vim 1
76 users, a
77 .Pa /usr/share/misc/dragonfly.vim
78 is available.
79 .Sh EXAMPLES
80 A fresh copy of the repository can be cloned anywhere.
81 Note that the directory to clone into
82 .Pa ( /usr/src
83 in the following example) must not exist, so all previous work in this
84 directory has to be saved and the directory be removed prior to cloning.
85 Also note that while the main repository is on
86 .Pa crater ,
87 it is recommended that one of the
88 .Dx
89 mirrors be used instead.
90 .Pp
91 Simple setup and updating of local repository is done using
92 .Pa /usr/Makefile :
93 .Bd -literal -offset 4n
94 cd /usr
95 make help               # get help
96 make src-checkout       # initial setup
97 make src-update
98 .Ed
99 .Pp
100 Somewhat finer control can be achieved using
101 .Xr git 1
102 directly.
103 To clone the repository and check out the master branch (this will take
104 some time):
105 .Bd -literal -offset 4n
106 cd /usr
107 git clone -o crater git://crater.dragonflybsd.org/dragonfly.git src
108 cd src
109 .Ed
110 .Pp
111 The repository can be held up to date by pulling frequently (to set up a
112 .Xr cron 8
113 job,
114 .Xr git 1 Ap s
115 .Fl Fl git-dir
116 option can be used):
117 .Bd -literal -offset 4n
118 cd /usr/src
119 git pull
120 .Ed
121 .Pp
122 It is not recommended to work directly in the master branch.
123 To create and checkout a working branch:
124 .Bd -literal -offset 4n
125 git checkout -b work
126 .Ed
127 .Pp
128 To create and checkout a branch of the
129 .Dx 2.0
130 release (called
131 .Sy rel2_0 ) :
132 .Bd -literal -offset 4n
133 git checkout -b rel2_0 crater/DragonFly_RELEASE_2_0
134 .Ed
135 .Pp
136 Branches can be deleted just as easy:
137 .Bd -literal -offset 4n
138 git branch -d work
139 .Ed
140 .Pp
141 After changes have been made to a branch, they can be committed:
142 .Bd -literal -offset 4n
143 git commit -a
144 .Ed
145 .Pp
146 .Xr git-commit 1 Ap s
147 .Fl m
148 and
149 .Fl F
150 options can be used to specify a commit message on the command line or read
151 it from a file, respectively.
152 .Pp
153 Finally, branches can be merged with the (updated) master by using
154 .Cm rebase :
155 .Bd -literal -offset 4n
156 git checkout master
157 git pull
158 git checkout work
159 git rebase master
160 .Ed
161 .Sh VENDOR IMPORTS
162 When importing vendor sources, make sure that you don't import
163 too many unnecessary sources.
164 Especially test suites that are not used by the
165 .Dx
166 build are good candidates for being stripped away.
167 These instructions assume that you have already extracted
168 the source package into its final directory and that they are
169 trimmed appropriately.
170 .Pp
171 .Em \&Do not change the vendor sources before importing them
172 on the vendor branch!
173 Necessary changes to the vendor sources can be applied to
174 .Pa master
175 after the import.
176 .Pp
177 For the following commands, we will import the imaginary package
178 .Nm foo-2.3
179 into
180 .Pa /usr/src/contrib/foo .
181 If this is the first import of
182 .Nm foo ,
183 you will have to choose the name of the vendor branch.
184 Customarily, this will be
185 .Pa vendor/FOO .
186 However, if you intend to maintain multiple vendor sources for the
187 same package
188 .Em concurrently ,
189 you should choose a branch name which includes part of the version,
190 i.e.\&
191 .Pa vendor/FOO2 .
192 .Pp
193 As a first step, we trick git to work on the vendor branch instead of on
194 .Pa master .
195 Be careful, since after issuing this command all your commits will go to the
196 vendor branch, but you will commit
197 .Em the whole working tree
198 and not just the vendor sources!
199 Thus you have to specify the exact directory for
200 .Li git commit .
201 In order to commit, you will have to add the new sources first.
202 .Pp
203 If the vendor branch already exists, make sure that you have a local vendor
204 branch which is up to date.
205 To this end, run:
206 .Bd -literal -offset 4n
207 git update-ref refs/heads/vendor/FOO origin/vendor/FOO
208 .Ed
209 .Pp
210 The next commands perform the actual import.
211 .Bd -literal -offset 4n
212 git symbolic-ref HEAD refs/heads/vendor/FOO
213 git add contrib/foo
214 git commit -m "Import foo-2.3" contrib/foo
215 .Ed
216 .Pp
217 With these commands we have imported the vendor sources on their own branch.
218 In the next step, we merge the vendor branch into master.
219 .Bd -literal -offset 4n
220 git checkout master
221 git merge vendor/FOO
222 .Ed
223 .Pp
224 Now you are free to change the sources in contrib/foo, since you are
225 back on the
226 .Pa master
227 branch.
228 The first thing to do is to add
229 .Pa README.DRAGONFLY
230 and
231 .Pa README.DELETED .
232 The former documents how the imported sources can be obtained, including
233 a checksum of the tarball.
234 The latter lists all files and directories that have been removed from the
235 source package.
236 You should use the
237 .Pa /usr/src/tools/tools/genreadmedeleted/genreadmedeleted
238 shell script to generate this file.
239 Commit the
240 .Pa README Ns s
241 first, then commit your local changes to the sources:
242 .Bd -literal -offset 4n
243 git add contrib/foo/README.D*
244 git commit -m "foo: add our READMEs"
245 .Ed
246 .Pp
247 Finally, push master and the vendor branch to crater:
248 .Bd -literal -offset 4n
249 git push crater master vendor/FOO
250 .Ed
251 .Sh SEE ALSO
252 .Xr git 1 Pq Pa devel/git ,
253 .Xr build 7 ,
254 .Xr committer 7 ,
255 .Xr release 7
256 .Rs
257 .%T "Documentation on git's page"
258 .%O "http://git-scm.com/documentation"
259 .Re
260 .Rs
261 .%T "Git Magic"
262 .%O "http://www-cs-students.stanford.edu/~blynn/gitmagic/"
263 .Re
264 .Sh HISTORY
265 The
266 .Nm
267 manual page was originally written by
268 .An Matthew Dillon Aq Mt dillon@FreeBSD.org
269 and first appeared
270 in
271 .Fx 5.0 ,
272 December 2002.
273 It was rewritten when
274 .Dx
275 switched to
276 .Xr git 1 .