diff options
author | Karl Williamson <khw@cpan.org> | 2016-01-06 15:34:15 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-01-06 15:37:03 -0700 |
commit | a98780ae0779fdda8d6c2bc706475093056a92bf (patch) | |
tree | 7bf9ca9c22287e5d45cc0ab9d3438e63e31a1136 /pod | |
parent | 3a9e0de308848aa65ec2dd5e2c7873073da08894 (diff) | |
download | perl-a98780ae0779fdda8d6c2bc706475093056a92bf.tar.gz |
perlgit: Fix too long verbatim line
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlgit.pod | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perlgit.pod b/pod/perlgit.pod index 32e30088a4..9d3edccba9 100644 --- a/pod/perlgit.pod +++ b/pod/perlgit.pod @@ -633,7 +633,8 @@ If just a raw diff is provided, it is also possible use this two-step process: % git apply bugfix.diff - % git commit -a -m "Some fixing" --author="That Guy <that.guy@internets.com>" + % git commit -a -m "Some fixing" \ + --author="That Guy <that.guy@internets.com>" Now we can inspect the change: |