Using a dash between git and its subcommand (e.g., git-format-patch) is deprecated, so replace it with a space. --- pod/perlrepository.pod | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pod/perlrepository.pod b/pod/perlrepository.pod index 15869eb..d8c540a 100644 --- a/pod/perlrepository.pod +++ b/pod/perlrepository.pod @@ -152,7 +152,7 @@ Now commit your change locally: Now you should create a patch file for all your local changes: - % git-format-patch origin + % git format-patch origin 0001-Rename-Leon-Brocard-to-Orange-Brocard.patch You should now send an email to perl5-porters@perl.org with a @@ -181,7 +181,7 @@ switch into it: Now we should apply the patch: - % git-am 0001-Rename-Leon-Brocard-to-Orange-Brocard.patch + % git am 0001-Rename-Leon-Brocard-to-Orange-Brocard.patch Applying Rename Leon Brocard to Orange Brocard Now we can inspect the change: -- 1.5.6.5Thread Next