This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
explain git status and stuff about remotes
[perl5.git] / pod / perlrepository.pod
CommitLineData
d7dd28b6
LB
1=head1 NAME
2
3perlrepository - Using the Perl source repository
4
5=head1 SYNOPSIS
6
7All of Perl's source code is kept centrally in a Git repository. The
8repository contains many Perl revisions from Perl 1 onwards and all
9the revisions from Perforce, the version control system we were using
10previously. This repository is accessible in different ways.
11
12The full repository takes up about 80MB of disk space. A check out of
13blead takes up about 160MB of disk space (including the repository). A
14build of blead takes up about 200MB (including the repository and the
15check out).
16
17=head1 GETTING ACCESS TO THE REPOSITORY
18
19=head2 READ ACCESS VIA THE WEB
20
21You may access this over the web. This allows you to browse the tree,
22see recent commits, search for particular commits and more. You may
23access it at:
24
25 http://perl5.git.perl.org/perl.git
26
27=head2 READ ACCESS VIA GIT
28
29You will need a copy of Git for your computer. You can fetch a copy of
30the repository using the Git protocol (which uses port 9418):
31
3b8a5fb0 32 git clone git://perl5.git.perl.org/perl.git perl-git
d7dd28b6 33
3b8a5fb0 34This clones the repository and makes a local copy in the 'perl-git'
d7dd28b6
LB
35directory.
36
37If your local network does not allow you to use port 9418, then you can
572f57ba 38fetch a copy of the repository over HTTP (this is slower):
d7dd28b6 39
3b8a5fb0 40 git clone http://perl5.git.perl.org/perl.git perl-http
d7dd28b6 41
3b8a5fb0 42This clones the repository and makes a local copy in the 'perl-http'
d7dd28b6
LB
43directory.
44
45=head2 WRITE ACCESS TO THE REPOSITORY
46
47If you are a committer, then you can fetch a copy of the repository that
48you can push back on with:
49
3b8a5fb0 50 git clone ssh://perl5.git.perl.org/gitroot/perl.git perl-ssh
d7dd28b6 51
3b8a5fb0 52This clones the repository and makes a local copy in the 'perl-ssh'
d7dd28b6
LB
53directory.
54
1a0f15d5 55If you clone using git, which is faster than ssh, then you will need to
c2cf2042 56modify your config in order to enable pushing. Edit .git/config where
1a0f15d5
YO
57you will see something like:
58
59 [remote "origin"]
60 url = git://perl5.git.perl.org/perl.git
61
62change that to something like this:
63
64 [remote "origin"]
65 url = ssh://perl5.git.perl.org/gitroot/perl.git
66
67NOTE: there are symlinks set up so that the /gitroot is actually optional.
d7dd28b6
LB
68
69=head1 OVERVIEW OF THE REPOSITORY
70
71Once you have changed into the repository directory, you can inspect it.
72
d7dd28b6 73
39219fd3
YO
74After a clone the repository will contain a single local branch, which
75will be the current branch as well, as indicated by the asterix.
76
77 % git branch
78 * blead
79
80Using the -a switch to branch will show the remote tracking branches in the
81repository:
82
83 % git branch -r
09081495 84 * blead
d7dd28b6
LB
85 origin/HEAD
86 origin/blead
87 ...
88
39219fd3
YO
89The branches that begin with "origin" correspond to the "git remote" that
90you cloned from. Each branch on the remote will be exactly tracked by theses
91branches. You should NEVER do work on these remote tracking branches. You only
92ever do work in a local branch. Local branches can be configured to automerge
93(on pull) from a designated remote tracking branch. This is the case with the
94default branch C<blead> which will be configured to merge from the remote
95tracking branch C<origin/blead>.
96
d7dd28b6
LB
97You can see recent commits:
98
c2cf2042 99 % git log
d7dd28b6 100
39219fd3
YO
101And pull new changes from the repository, and update your local repository
102(must be clean first)
d7dd28b6
LB
103
104 % git pull
09081495 105
39219fd3
YO
106Assuming we are on the branch C<blead> immediately after a pull, this command
107would be more or less equivalent to:
108
109 % git fetch
110 % git merge origin/blead
111
112In fact if you want to update your local repository without touching your working
113directory you do:
114
115 % git fetch
116
117And if you want to update your remote tracking branches for all defined remotes
118simultaneously you do
119
120 % git remote update
121
122Neither of these last two commands will update your working directory, however
123both will update the repository.
124
09081495
LB
125To switch to another branch:
126
127 % git checkout origin/maint-5.8-dor
128
129To switch back to blead:
130
131 % git checkout blead
c2cf2042 132
39219fd3
YO
133=head2 FINDING OUT YOUR STATUS
134
135The most common git command you will use will probably be
136
137 % git status
138
139This command will produce as output a description of the current state of the
140repository, including modified files and unignored untracked files, and in addition
141it will show things like what files have been staged for the next commit,
142and usually some useful information about how to change things. For instance the
143following:
144
145 $ git status
146 # On branch blead
147 # Your branch is ahead of 'origin/blead' by 1 commit.
148 #
149 # Changes to be committed:
150 # (use "git reset HEAD <file>..." to unstage)
151 #
152 # modified: pod/perlrepository.pod
153 #
154 # Changed but not updated:
155 # (use "git add <file>..." to update what will be committed)
156 #
157 # modified: pod/perlrepository.pod
158 #
159 # Untracked files:
160 # (use "git add <file>..." to include in what will be committed)
161 #
162 # deliberate.untracked
163
164This shows that there were changes to this document staged for commit, and
165that there were further changes in the working directory not yet staged. It
166also shows that there was an untracked file in the working directory, and as
167you can see shows how to change all of this. It also shows that there
168is one commit on the working branch C<blead> which has not been pushed to the
169C<origin> remote yet.
170
171When in doubt, before you do anything else, check your status and read it
172carefully, many questions are answered directly by the git status output.
173
174NOTE: that this output is also what you see as a template if you do not
175provide a message to c<git commit>.
176
c2cf2042
LB
177=head1 SUBMITTING A PATCH
178
179If you have a patch in mind for Perl, you should first get a copy of
180the repository:
181
182 % git clone git://perl5.git.perl.org/perl.git perl-git
183
184Then change into the directory:
185
186 % cd perl-git
187
12322d22 188Alternatively, if you already have a Perl repository, you should
f5445761 189ensure that you're on the I<blead> branch, and your repository
12322d22
A
190is up to date:
191
192 % git checkout blead
193 % git pull
194
195Now that we have everything up to date, we need to create a temporary new
196branch for these changes and switch into it:
b1fccde5 197
a9b05323
YO
198 % git checkout -b orange
199
200which is the short form of
201
b1fccde5
LB
202 % git branch orange
203 % git checkout orange
204
c2cf2042
LB
205Then make your changes. For example, if Leon Brocard changes his name
206to Orange Brocard, we should change his name in the AUTHORS file:
207
208 % perl -pi -e 's{Leon Brocard}{Orange Brocard}' AUTHORS
209
210You can see what files are changed:
211
212 % git status
213 # On branch blead
214 # Changes to be committed:
215 # (use "git reset HEAD <file>..." to unstage)
216 #
217 # modified: AUTHORS
218 #
219
c2cf2042
LB
220And you can see the changes:
221
222 % git diff
223 diff --git a/AUTHORS b/AUTHORS
224 index 293dd70..722c93e 100644
225 --- a/AUTHORS
226 +++ b/AUTHORS
7df2e4bc 227 @@ -541,7 +541,7 @@ Lars Hecking <lhecking@nmrc.ucc.ie>
c2cf2042
LB
228 Laszlo Molnar <laszlo.molnar@eth.ericsson.se>
229 Leif Huhn <leif@hale.dkstat.com>
230 Len Johnson <lenjay@ibm.net>
231 -Leon Brocard <acme@astray.com>
232 +Orange Brocard <acme@astray.com>
233 Les Peters <lpeters@aol.net>
234 Lesley Binks <lesley.binks@gmail.com>
235 Lincoln D. Stein <lstein@cshl.org>
236
237Now commit your change locally:
238
239 % git add AUTHORS
240 % git commit -m 'Rename Leon Brocard to Orange Brocard'
241 Created commit 6196c1d: Rename Leon Brocard to Orange Brocard
242 1 files changed, 1 insertions(+), 1 deletions(-)
243
244Now you should create a patch file for all your local changes:
245
2af192ee 246 % git format-patch origin
c2cf2042
LB
247 0001-Rename-Leon-Brocard-to-Orange-Brocard.patch
248
249You should now send an email to perl5-porters@perl.org with a
250description of your changes, and attach this patch file as an
251attachment.
252
b1fccde5
LB
253If you want to delete your temporary branch, you may do so with:
254
255 % git checkout blead
256 % git branch -d orange
257 error: The branch 'orange' is not an ancestor of your current HEAD.
258 If you are sure you want to delete it, run 'git branch -D orange'.
259 % git branch -D orange
260 Deleted branch orange.
7df2e4bc
LB
261
262=head1 ACCEPTING A PATCH
263
264If you have received a patch file generated using the above section,
265you should try out the patch.
266
267First we need to create a temporary new branch for these changes and
268switch into it:
269
a9b05323 270 % git checkout -b experimental
7df2e4bc
LB
271
272Now we should apply the patch:
273
2af192ee 274 % git am 0001-Rename-Leon-Brocard-to-Orange-Brocard.patch
7df2e4bc
LB
275 Applying Rename Leon Brocard to Orange Brocard
276
277Now we can inspect the change:
278
279 % git log
280 commit b1b3dab48344cff6de4087efca3dbd63548ab5e2
281 Author: Leon Brocard <acme@astray.com>
282 Date: Fri Dec 19 17:02:59 2008 +0000
283
284 Rename Leon Brocard to Orange Brocard
285 ...
286
287 % git diff blead
288 diff --git a/AUTHORS b/AUTHORS
289 index 293dd70..722c93e 100644
290 --- a/AUTHORS
291 +++ b/AUTHORS
292 @@ -541,7 +541,7 @@ Lars Hecking <lhecking@nmrc.ucc.ie>
293 Laszlo Molnar <laszlo.molnar@eth.ericsson.se>
294 Leif Huhn <leif@hale.dkstat.com>
295 Len Johnson <lenjay@ibm.net>
296 -Leon Brocard <acme@astray.com>
297 +Orange Brocard <acme@astray.com>
298 Les Peters <lpeters@aol.net>
299 Lesley Binks <lesley.binks@gmail.com>
300 Lincoln D. Stein <lstein@cshl.org>
301
302If you are a committer to Perl and you think the patch is good, you can
75fb7651 303then merge it into blead then push it out to the main repository:
7df2e4bc
LB
304
305 % git checkout blead
306 % git pull . experimental
75fb7651 307 % git push
7df2e4bc
LB
308
309If you want to delete your temporary branch, you may do so with:
310
311 % git checkout blead
312 % git branch -d experimental
313 error: The branch 'experimental' is not an ancestor of your current HEAD.
314 If you are sure you want to delete it, run 'git branch -D experimental'.
315 % git branch -D experimental
316 Deleted branch experimental.