4 Consistent formatting of this file is achieved with:
5 perl ./Porting/podtidy pod/perlrepository.pod
9 perlrepository - Using the Perl source repository
13 All of Perl's source code is kept centrally in a Git repository at
14 I<perl5.git.perl.org>. The repository contains many Perl revisions from
15 Perl 1 onwards and all the revisions from Perforce, the version control
16 system we were using previously. This repository is accessible in
19 The full repository takes up about 80MB of disk space. A check out of
20 the blead branch (that is, the main development branch, which contains
21 bleadperl, the development version of perl 5) takes up about 160MB of
22 disk space (including the repository). A build of bleadperl takes up
23 about 200MB (including the repository and the check out).
25 =head1 Getting access to the repository
27 =head2 Read access via the web
29 You may access the repository over the web. This allows you to browse
30 the tree, see recent commits, subscribe to RSS feeds for the changes,
31 search for particular commits and more. You may access it at:
33 http://perl5.git.perl.org/perl.git
35 A mirror of the repository is found at:
37 http://github.com/mirrors/perl
39 =head2 Read access via Git
41 You will need a copy of Git for your computer. You can fetch a copy of
42 the repository using the Git protocol (which uses port 9418):
44 % git clone git://perl5.git.perl.org/perl.git perl-git
46 This clones the repository and makes a local copy in the F<perl-git>
49 If your local network does not allow you to use port 9418, then you can
50 fetch a copy of the repository over HTTP (this is at least 4x slower):
52 % git clone http://perl5.git.perl.org/perl.git perl-http
54 This clones the repository and makes a local copy in the F<perl-http>
57 =head2 Write access to the repository
59 If you are a committer, then you can fetch a copy of the repository
60 that you can push back on with:
62 % git clone ssh://perl5.git.perl.org/perl.git perl-ssh
64 This clones the repository and makes a local copy in the F<perl-ssh>
67 If you cloned using the git protocol, which is faster than ssh, then
68 you will need to modify the URL for the origin remote to enable
69 pushing. To do that edit F<.git/config> with git-config(1) like this:
71 % git config remote.origin.url ssh://perl5.git.perl.org/perl.git
73 You can also set up your user name and e-mail address. Most people do
74 this once globally in their F<~/.gitconfig> by doing something like:
76 % git config --global user.name "Ævar Arnfjörð Bjarmason"
77 % git config --global user.email avarab@gmail.com
79 However if you'd like to override that just for perl then execute then
80 execute something like the following in F<perl-git>:
82 % git config user.email avar@cpan.org
84 It is also possible to keep C<origin> as a git remote, and add a new
85 remote for ssh access:
87 % git remote add camel perl5.git.perl.org:/perl.git
89 This allows you to update your local repository by pulling from
90 C<origin>, which is faster and doesn't require you to authenticate, and
91 to push your changes back with the C<camel> remote:
96 The C<fetch> command just updates the C<camel> refs, as the objects
97 themselves should have been fetched when pulling from C<origin>.
99 =head2 A note on camel and dromedary
101 The committers have SSH access to the two servers that serve
102 C<perl5.git.perl.org>. One is C<perl5.git.perl.org> itself (I<camel>),
103 which is the 'master' repository. The second one is
104 C<users.perl5.git.perl.org> (I<dromedary>), which can be used for
105 general testing and development. Dromedary syncs the git tree from
106 camel every few minutes, you should not push there. Both machines also
107 have a full CPAN mirror in /srv/CPAN, please use this. To share files
108 with the general public, dromedary serves your ~/public_html/ as
109 C<http://users.perl5.git.perl.org/~yourlogin/>
111 These hosts have fairly strict firewalls to the outside. Outgoing, only
112 rsync, ssh and git are allowed. For http and ftp, you can use
113 http://webproxy:3128 as proxy. Incoming, the firewall tries to detect
114 attacks and blocks IP addresses with suspicious activity. This
115 sometimes (but very rarely) has false positives and you might get
116 blocked. The quickest way to get unblocked is to notify the admins.
118 These two boxes are owned, hosted, and operated by booking.com. You can
119 reach the sysadmins in #p5p on irc.perl.org or via mail to
120 C<perl5-porters@perl.org>
122 =head1 Overview of the repository
124 Once you have changed into the repository directory, you can inspect
127 After a clone the repository will contain a single local branch, which
128 will be the current branch as well, as indicated by the asterisk.
133 Using the -a switch to C<branch> will also show the remote tracking
134 branches in the repository:
142 The branches that begin with "origin" correspond to the "git remote"
143 that you cloned from (which is named "origin"). Each branch on the
144 remote will be exactly tracked by theses branches. You should NEVER do
145 work on these remote tracking branches. You only ever do work in a
146 local branch. Local branches can be configured to automerge (on pull)
147 from a designated remote tracking branch. This is the case with the
148 default branch C<blead> which will be configured to merge from the
149 remote tracking branch C<origin/blead>.
151 You can see recent commits:
155 And pull new changes from the repository, and update your local
156 repository (must be clean first)
160 Assuming we are on the branch C<blead> immediately after a pull, this
161 command would be more or less equivalent to:
164 % git merge origin/blead
166 In fact if you want to update your local repository without touching
167 your working directory you do:
171 And if you want to update your remote-tracking branches for all defined
172 remotes simultaneously you can do
176 Neither of these last two commands will update your working directory,
177 however both will update the remote-tracking branches in your
180 To make a local branch of a remote branch:
182 % git checkout -b maint-5.10 origin/maint-5.10
184 To switch back to blead:
188 =head2 Finding out your status
190 The most common git command you will use will probably be
194 This command will produce as output a description of the current state
195 of the repository, including modified files and unignored untracked
196 files, and in addition it will show things like what files have been
197 staged for the next commit, and usually some useful information about
198 how to change things. For instance the following:
202 # Your branch is ahead of 'origin/blead' by 1 commit.
204 # Changes to be committed:
205 # (use "git reset HEAD <file>..." to unstage)
207 # modified: pod/perlrepository.pod
209 # Changed but not updated:
210 # (use "git add <file>..." to update what will be committed)
212 # modified: pod/perlrepository.pod
215 # (use "git add <file>..." to include in what will be committed)
217 # deliberate.untracked
219 This shows that there were changes to this document staged for commit,
220 and that there were further changes in the working directory not yet
221 staged. It also shows that there was an untracked file in the working
222 directory, and as you can see shows how to change all of this. It also
223 shows that there is one commit on the working branch C<blead> which has
224 not been pushed to the C<origin> remote yet. B<NOTE>: that this output
225 is also what you see as a template if you do not provide a message to
228 Assuming that you'd like to commit all the changes you've just made as
229 a a single atomic unit, run this command:
233 (That C<-a> tells git to add every file you've changed to this commit.
234 New files aren't automatically added to your commit when you use
235 C<commit -a> If you want to add files or to commit some, but not all of
236 your changes, have a look at the documentation for C<git add>.)
238 Git will start up your favorite text editor, so that you can craft a
239 commit message for your change. See L</Commit message> below for more
240 information about what makes a good commit message.
242 Once you've finished writing your commit message and exited your
243 editor, git will write your change to disk and tell you something like
246 Created commit daf8e63: explain git status and stuff about remotes
247 1 files changed, 83 insertions(+), 3 deletions(-)
250 If you re-run C<git status>, you should see something like this:
254 # Your branch is ahead of 'origin/blead' by 2 commits.
257 # (use "git add <file>..." to include in what will be committed)
259 # deliberate.untracked
260 nothing added to commit but untracked files present (use "git add" to track)
263 When in doubt, before you do anything else, check your status and read
264 it carefully, many questions are answered directly by the git status
267 =head1 Submitting a patch
269 If you have a patch in mind for Perl, you should first get a copy of
272 % git clone git://perl5.git.perl.org/perl.git perl-git
274 Then change into the directory:
278 Alternatively, if you already have a Perl repository, you should ensure
279 that you're on the I<blead> branch, and your repository is up to date:
284 It's preferable to patch against the latest blead version, since this
285 is where new development occurs for all changes other than critical bug
286 fixes. Critical bug fix patches should be made against the relevant
287 maint branches, or should be submitted with a note indicating all the
288 branches where the fix should be applied.
290 Now that we have everything up to date, we need to create a temporary
291 new branch for these changes and switch into it:
293 % git checkout -b orange
295 which is the short form of
298 % git checkout orange
300 Creating a topic branch makes it easier for the maintainers to rebase
301 or merge back into the master blead for a more linear history. If you
302 don't work on a topic branch the maintainer has to manually cherry pick
303 your changes onto blead before they can be applied.
305 That'll get you scolded on perl5-porters, so don't do that. Be Awesome.
307 Then make your changes. For example, if Leon Brocard changes his name
308 to Orange Brocard, we should change his name in the AUTHORS file:
310 % perl -pi -e 's{Leon Brocard}{Orange Brocard}' AUTHORS
312 You can see what files are changed:
316 # Changes to be committed:
317 # (use "git reset HEAD <file>..." to unstage)
322 And you can see the changes:
325 diff --git a/AUTHORS b/AUTHORS
326 index 293dd70..722c93e 100644
329 @@ -541,7 +541,7 @@ Lars Hecking <lhecking@nmrc.ucc.ie>
330 Laszlo Molnar <laszlo.molnar@eth.ericsson.se>
331 Leif Huhn <leif@hale.dkstat.com>
332 Len Johnson <lenjay@ibm.net>
333 -Leon Brocard <acme@astray.com>
334 +Orange Brocard <acme@astray.com>
335 Les Peters <lpeters@aol.net>
336 Lesley Binks <lesley.binks@gmail.com>
337 Lincoln D. Stein <lstein@cshl.org>
339 Now commit your change locally:
341 % git commit -a -m 'Rename Leon Brocard to Orange Brocard'
342 Created commit 6196c1d: Rename Leon Brocard to Orange Brocard
343 1 files changed, 1 insertions(+), 1 deletions(-)
345 You can examine your last commit with:
349 and if you are not happy with either the description or the patch
350 itself you can fix it up by editing the files once more and then issue:
352 % git commit -a --amend
354 Now you should create a patch file for all your local changes:
356 % git format-patch -M origin..
357 0001-Rename-Leon-Brocard-to-Orange-Brocard.patch
359 You should now send an email to to
360 L<perlbug@perl.org|mailto:perlbug@perl.org> with a description of your
361 changes, and include this patch file as an attachment. In addition to
362 being tracked by RT, mail to perlbug will automatically be forwarded to
363 perl5-porters. You should only send patches to
364 L<perl5-porters@perl.org|mailto:perl5-porters@perl.org> directly if the
365 patch is not ready to be applied, but intended for discussion.
367 See the next section for how to configure and use git to send these
370 If you want to delete your temporary branch, you may do so with:
373 % git branch -d orange
374 error: The branch 'orange' is not an ancestor of your current HEAD.
375 If you are sure you want to delete it, run 'git branch -D orange'.
376 % git branch -D orange
377 Deleted branch orange.
379 =head2 Using git to send patch emails
381 In your ~/git/perl repository, set the destination email to perl's bug
384 $ git config sendemail.to perlbug@perl.org
386 Or maybe perl5-porters (discussed above):
388 $ git config sendemail.to perl5-porters@perl.org
390 Then you can use git directly to send your patch emails:
392 $ git send-email 0001-Rename-Leon-Brocard-to-Orange-Brocard.patch
394 You may need to set some configuration variables for your particular
395 email service provider. For example, to set your global git config to
396 send email via a gmail account:
398 $ git config --global sendemail.smtpserver smtp.gmail.com
399 $ git config --global sendemail.smtpssl 1
400 $ git config --global sendemail.smtpuser YOURUSERNAME@gmail.com
402 With this configuration, you will be prompted for your gmail password
403 when you run 'git send-email'. You can also configure
404 C<sendemail.smtppass> with your password if you don't care about having
405 your password in the .gitconfig file.
407 =head2 A note on derived files
409 Be aware that many files in the distribution are derivative--avoid
410 patching them, because git won't see the changes to them, and the build
411 process will overwrite them. Patch the originals instead. Most
412 utilities (like perldoc) are in this category, i.e. patch
413 F<utils/perldoc.PL> rather than F<utils/perldoc>. Similarly, don't
414 create patches for files under $src_root/ext from their copies found in
415 $install_root/lib. If you are unsure about the proper location of a
416 file that may have gotten copied while building the source
417 distribution, consult the C<MANIFEST>.
419 As a special case, several files are regenerated by 'make regen' if
420 your patch alters C<embed.fnc>. These are needed for compilation, but
421 are included in the distribution so that you can build perl without
422 needing another perl to generate the files. You must test with these
423 regenerated files, but it is preferred that you instead note that 'make
424 regen is needed' in both the email and the commit message, and submit
425 your patch without them. If you're submitting a series of patches, it
426 might be best to submit the regenerated changes immediately after the
427 source-changes that caused them, so as to have as little effect as
428 possible on the bisectability of your patchset.
431 What should we recommend about binary files now? Do we need anything?
433 =head2 Getting your patch accepted
435 If you are submitting a code patch there are several things that you
442 As you craft each patch you intend to submit to the Perl core, it's
443 important to write a good commit message.
445 The first line of the commit message should be a short description and
446 should skip the full stop. It should be no longer than the subject line
447 of an E-Mail, 50 characters being a good rule of thumb.
449 A lot of Git tools (Gitweb, GitHub, git log --pretty=oneline, ..) will
450 only display the first line (cut off at 50 characters) when presenting
453 The commit message should include description of the problem that the
454 patch corrects or new functionality that the patch adds.
456 As a general rule of thumb, your commit message should let a programmer
457 with a reasonable familiarity with the Perl core quickly understand
458 what you were trying to do, how you were trying to do it and why the
459 change matters to Perl.
465 Your commit message should describe what part of the Perl core you're
466 changing and what you expect your patch to do.
470 Perhaps most importantly, your commit message should describe why the
471 change you are making is important. When someone looks at your change
472 in six months or six years, your intent should be clear. If you're
473 deprecating a feature with the intent of later simplifying another bit
474 of code, say so. If you're fixing a performance problem or adding a new
475 feature to support some other bit of the core, mention that.
479 While it's not necessary for documentation changes, new tests or
480 trivial patches, it's often worth explaining how your change works.
481 Even if it's clear to you today, it may not be clear to a porter next
486 A commit message isn't intended to take the place of comments in your
487 code. Commit messages should describe the change you made, while code
488 comments should describe the current state of the code. If you've just
489 implemented a new feature, complete with doc, tests and well-commented
490 code, a brief commit message will often suffice. If, however, you've
491 just changed a single character deep in the parser or lexer, you might
492 need to write a small novel to ensure that future readers understand
493 what you did and why you did it.
495 =item Comments, Comments, Comments
497 Be sure to adequately comment your code. While commenting every line
498 is unnecessary, anything that takes advantage of side effects of
499 operators, that creates changes that will be felt outside of the
500 function being patched, or that others may find confusing should be
501 documented. If you are going to err, it is better to err on the side
502 of adding too many comments than too few.
506 In general, please follow the particular style of the code you are
509 In particular, follow these general guidelines for patching Perl
512 8-wide tabs (no exceptions!)
513 4-wide indents for code, 2-wide indents for nested CPP #defines
514 try hard not to exceed 79-columns
516 uncuddled elses and "K&R" style for indenting control constructs
517 no C++ style (//) comments
518 mark places that need to be revisited with XXX (and revisit often!)
519 opening brace lines up with "if" when conditional spans multiple
520 lines; should be at end-of-line otherwise
521 in function definitions, name starts in column 0 (return value is on
523 single space after keywords that are followed by parens, no space
524 between function name and following paren
525 avoid assignments in conditionals, but if they're unavoidable, use
526 extra paren, e.g. "if (a && (b = c)) ..."
527 "return foo;" rather than "return(foo);"
528 "if (!foo) ..." rather than "if (foo == FALSE) ..." etc.
532 If your patch changes code (rather than just changing documentation)
533 you should also include one or more test cases which illustrate the bug
534 you're fixing or validate the new functionality you're adding. In
535 general, you should update an existing test file rather than create a
538 Your testsuite additions should generally follow these guidelines
539 (courtesy of Gurusamy Sarathy <gsar@activestate.com>):
541 Know what you're testing. Read the docs, and the source.
542 Tend to fail, not succeed.
543 Interpret results strictly.
544 Use unrelated features (this will flush out bizarre interactions).
545 Use non-standard idioms (otherwise you are not testing TIMTOWTDI).
546 Avoid using hardcoded test numbers whenever possible (the
547 EXPECTED/GOT found in t/op/tie.t is much more maintainable,
548 and gives better failure reports).
549 Give meaningful error messages when a test fails.
550 Avoid using qx// and system() unless you are testing for them. If you
551 do use them, make sure that you cover _all_ perl platforms.
552 Unlink any temporary files you create.
553 Promote unforeseen warnings to errors with $SIG{__WARN__}.
554 Be sure to use the libraries and modules shipped with the version
555 being tested, not those that were already installed.
556 Add comments to the code explaining what you are testing for.
557 Make updating the '1..42' string unnecessary. Or make sure that
559 Test _all_ behaviors of a given operator, library, or function:
560 - All optional arguments
561 - Return values in various contexts (boolean, scalar, list, lvalue)
562 - Use both global and lexical variables
563 - Don't forget the exceptional, pathological cases.
567 =head1 Accepting a patch
569 If you have received a patch file generated using the above section,
570 you should try out the patch.
572 First we need to create a temporary new branch for these changes and
575 % git checkout -b experimental
577 Patches that were formatted by C<git format-patch> are applied with
580 % git am 0001-Rename-Leon-Brocard-to-Orange-Brocard.patch
581 Applying Rename Leon Brocard to Orange Brocard
583 If just a raw diff is provided, it is also possible use this two-step
586 % git apply bugfix.diff
587 % git commit -a -m "Some fixing" --author="That Guy <that.guy@internets.com>"
589 Now we can inspect the change:
592 commit b1b3dab48344cff6de4087efca3dbd63548ab5e2
593 Author: Leon Brocard <acme@astray.com>
594 Date: Fri Dec 19 17:02:59 2008 +0000
596 Rename Leon Brocard to Orange Brocard
598 diff --git a/AUTHORS b/AUTHORS
599 index 293dd70..722c93e 100644
602 @@ -541,7 +541,7 @@ Lars Hecking <lhecking@nmrc.ucc.ie>
603 Laszlo Molnar <laszlo.molnar@eth.ericsson.se>
604 Leif Huhn <leif@hale.dkstat.com>
605 Len Johnson <lenjay@ibm.net>
606 -Leon Brocard <acme@astray.com>
607 +Orange Brocard <acme@astray.com>
608 Les Peters <lpeters@aol.net>
609 Lesley Binks <lesley.binks@gmail.com>
610 Lincoln D. Stein <lstein@cshl.org>
612 If you are a committer to Perl and you think the patch is good, you can
613 then merge it into blead then push it out to the main repository:
616 % git merge experimental
619 If you want to delete your temporary branch, you may do so with:
622 % git branch -d experimental
623 error: The branch 'experimental' is not an ancestor of your current HEAD.
624 If you are sure you want to delete it, run 'git branch -D experimental'.
625 % git branch -D experimental
626 Deleted branch experimental.
628 =head1 Cleaning a working directory
630 The command C<git clean> can with varying arguments be used as a
631 replacement for C<make clean>.
633 To reset your working directory to a pristine condition you can do:
637 However, be aware this will delete ALL untracked content. You can use
641 to remove all ignored untracked files, such as build and test
642 byproduct, but leave any manually created files alone.
644 If you only want to cancel some uncommitted edits, you can use C<git
645 checkout> and give it a list of files to be reverted, or C<git checkout
646 -f> to revert them all.
648 If you want to cancel one or several commits, you can use C<git reset>.
652 C<git> provides a built-in way to determine, with a binary search in
653 the history, which commit should be blamed for introducing a given bug.
655 Suppose that we have a script F<~/testcase.pl> that exits with C<0>
656 when some behaviour is correct, and with C<1> when it's faulty. You
657 need an helper script that automates building C<perl> and running the
664 # If you get './makedepend: 1: Syntax error: Unterminated quoted
665 # string' when bisecting versions of perl older than 5.9.5 this hack
666 # will work around the bug in makedepend.SH which was fixed in
667 # version 96a8704c. Make sure to comment out `git checkout makedepend.SH'
669 git show blead:makedepend.SH > makedepend.SH
671 # If you can use ccache, add -Dcc=ccache\ gcc -Dld=gcc to the Configure line
672 # if Encode is not needed for the test, you can speed up the bisect by
673 # excluding it from the runs with -Dnoextensions=Encode
674 sh Configure -des -Dusedevel -Doptimize="-g"
675 test -f config.sh || exit 125
676 # Correct makefile for newer GNU gcc
677 perl -ni -we 'print unless /<(?:built-in|command)/' makefile x2p/makefile
678 # if you just need miniperl, replace test_prep with miniperl
680 [ -x ./perl ] || exit 125
681 ./perl -Ilib ~/testcase.pl
683 [ $ret -gt 127 ] && ret=127
684 # git checkout makedepend.SH
688 This script may return C<125> to indicate that the corresponding commit
689 should be skipped. Otherwise, it returns the status of
692 You first enter in bisect mode with:
696 For example, if the bug is present on C<HEAD> but wasn't in 5.10.0,
697 C<git> will learn about this when you enter:
700 % git bisect good perl-5.10.0
701 Bisecting: 853 revisions left to test after this
703 This results in checking out the median commit between C<HEAD> and
704 C<perl-5.10.0>. You can then run the bisecting process with:
706 % git bisect run ~/run
708 When the first bad commit is isolated, C<git bisect> will tell you so:
710 ca4cfd28534303b82a216cfe83a1c80cbc3b9dc5 is first bad commit
711 commit ca4cfd28534303b82a216cfe83a1c80cbc3b9dc5
712 Author: Dave Mitchell <davem@fdisolutions.com>
713 Date: Sat Feb 9 14:56:23 2008 +0000
715 [perl #49472] Attributes + Unknown Error
720 You can peek into the bisecting process with C<git bisect log> and
721 C<git bisect visualize>. C<git bisect reset> will get you out of bisect
724 Please note that the first C<good> state must be an ancestor of the
725 first C<bad> state. If you want to search for the commit that I<solved>
726 some bug, you have to negate your test case (i.e. exit with C<1> if OK
727 and C<0> if not) and still mark the lower bound as C<good> and the
728 upper as C<bad>. The "first bad commit" has then to be understood as
729 the "first commit where the bug is solved".
731 C<git help bisect> has much more information on how you can tweak your
734 =head1 Submitting a patch via GitHub
736 GitHub is a website that makes it easy to fork and publish projects
737 with Git. First you should set up a GitHub account and log in.
739 Perl's git repository is mirrored on GitHub at this page:
741 http://github.com/mirrors/perl/tree/blead
743 Visit the page and click the "fork" button. This clones the Perl git
744 repository for you and provides you with "Your Clone URL" from which
747 % git clone git@github.com:USERNAME/perl.git perl-github
749 The same patch as above, using github might look like this:
752 % git remote add upstream git://perl5.git.perl.org/perl.git
753 % git pull upstream blead
754 % git checkout -b orange
755 % perl -pi -e 's{Leon Brocard}{Orange Brocard}' AUTHORS
756 % git commit -a -m 'Rename Leon Brocard to Orange Brocard'
757 % git push origin orange
759 The orange branch has been pushed to GitHub, so you should now send an
760 email (see L</Submitting a patch>) with a description of your changes
761 and the following information:
763 http://github.com/USERNAME/perl/tree/orange
764 git://github.com/USERNAME/perl.git branch orange
766 =head1 Merging from a branch via GitHub
768 If someone has provided a branch via GitHub and you are a committer,
769 you should use the following in your perl-ssh directory:
771 % git remote add avar git://github.com/avar/perl.git
774 Now you can see the differences between the branch and blead:
776 % git diff avar/orange
778 And you can see the commits:
780 % git log avar/orange
782 If you approve of a specific commit, you can cherry pick it:
784 % git cherry-pick 0c24b290ae02b2ab3304f51d5e11e85eb3659eae
786 Or you could just merge the whole branch if you like it all:
788 % git merge avar/orange
790 And then push back to the repository:
795 =head1 Topic branches and rewriting history
797 Individual committers should create topic branches under
798 B<yourname>/B<some_descriptive_name>. Other committers should check
799 with a topic branch's creator before making any change to it.
801 The simplest way to create a remote topic branch that works on all
802 versions of git is to push the current head as a new branch on the
803 remote, then check it out locally:
805 $ branch="$yourname/$some_descriptive_name"
806 $ git push origin HEAD:$branch
807 $ git checkout -b $branch origin/$branch
809 Users of git 1.7 or newer can do it in a more obvious manner:
811 $ branch="$yourname/$some_descriptive_name"
812 $ git checkout -b $branch
813 $ git push origin -u $branch
815 If you are not the creator of B<yourname>/B<some_descriptive_name>, you
816 might sometimes find that the original author has edited the branch's
817 history. There are lots of good reasons for this. Sometimes, an author
818 might simply be rebasing the branch onto a newer source point.
819 Sometimes, an author might have found an error in an early commit which
820 they wanted to fix before merging the branch to blead.
822 Currently the master repository is configured to forbid
823 non-fast-forward merges. This means that the branches within can not
824 be rebased and pushed as a single step.
826 The only way you will ever be allowed to rebase or modify the history
827 of a pushed branch is to delete it and push it as a new branch under
828 the same name. Please think carefully about doing this. It may be
829 better to sequentially rename your branches so that it is easier for
830 others working with you to cherry-pick their local changes onto the new
831 version. (XXX: needs explanation).
833 If you want to rebase a personal topic branch, you will have to delete
834 your existing topic branch and push as a new version of it. You can do
835 this via the following formula (see the explanation about C<refspec>'s
836 in the git push documentation for details) after you have rebased your
840 $ git checkout $user/$topic
842 $ git rebase origin/blead
844 # then "delete-and-push"
845 $ git push origin :$user/$topic
846 $ git push origin $user/$topic
848 B<NOTE:> it is forbidden at the repository level to delete any of the
849 "primary" branches. That is any branch matching
850 C<m!^(blead|maint|perl)!>. Any attempt to do so will result in git
851 producing an error like this:
853 $ git push origin :blead
854 *** It is forbidden to delete blead/maint branches in this repository
855 error: hooks/update exited with error code 1
856 error: hook declined to update refs/heads/blead
857 To ssh://perl5.git.perl.org/perl
858 ! [remote rejected] blead (hook declined)
859 error: failed to push some refs to 'ssh://perl5.git.perl.org/perl'
861 As a matter of policy we do B<not> edit the history of the blead and
862 maint-* branches. If a typo (or worse) sneaks into a commit to blead or
863 maint-*, we'll fix it in another commit. The only types of updates
864 allowed on these branches are "fast-forward's", where all history is
867 Annotated tags in the canonical perl.git repository will never be
868 deleted or modified. Think long and hard about whether you want to push
869 a local tag to perl.git before doing so. (Pushing unannotated tags is
872 =head1 Committing to maintenance versions
874 Maintenance versions should only be altered to add critical bug fixes,
877 To commit to a maintenance version of perl, you need to create a local
880 % git checkout --track -b maint-5.005 origin/maint-5.005
882 This creates a local branch named C<maint-5.005>, which tracks the
883 remote branch C<origin/maint-5.005>. Then you can pull, commit, merge
886 You can also cherry-pick commits from blead and another branch, by
887 using the C<git cherry-pick> command. It is recommended to use the
888 B<-x> option to C<git cherry-pick> in order to record the SHA1 of the
889 original commit in the new commit message.
893 The perl history contains one mistake which was not caught in the
894 conversion: a merge was recorded in the history between blead and
895 maint-5.10 where no merge actually occurred. Due to the nature of git,
896 this is now impossible to fix in the public repository. You can remove
897 this mis-merge locally by adding the following line to your
898 C<.git/info/grafts> file:
900 296f12bbbbaa06de9be9d09d3dcf8f4528898a49 434946e0cb7a32589ed92d18008aaa1d88515930
902 It is particularly important to have this graft line if any bisecting
903 is done in the area of the "merge" in question.
911 The git documentation, accessible via the C<git help> command
915 L<perlpolicy> - Perl core development policy