diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-07-03 16:33:54 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-07-03 16:33:54 +0200 |
commit | 8ab77384e7912bb422da3f271de0ff759d9e0647 (patch) | |
tree | 2334eb480edfb1aa25e2212a34682b765a836ee7 /pod/perlgit.pod | |
parent | 961bfa8c285ba0f3c125df699f8fc2cdae21ddd5 (diff) | |
download | perl-8ab77384e7912bb422da3f271de0ff759d9e0647.tar.gz |
Use C<< >> to avoid tripping a podchecker heuristic for "don't you mean F<>?"
In this case, commiters/somework is not a file, hence C<> is correct.
Diffstat (limited to 'pod/perlgit.pod')
-rw-r--r-- | pod/perlgit.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlgit.pod b/pod/perlgit.pod index de1fecfa2c..0e855fa1e4 100644 --- a/pod/perlgit.pod +++ b/pod/perlgit.pod @@ -730,7 +730,7 @@ branches and rewriting history>, which you should regularly rebase against blead to ensure that your code is not broken by blead moving. When you have finished your work and performed a final rebase and test, you can merge it into master like this (assuming your work was on the -branch C<committer/somework>): +branch C<<committer/somework>>): $ git checkout blead $ git merge --no-ff --no-commit committer/somework |