summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avar@cpan.org>2011-01-20 22:31:29 +0000
committerÆvar Arnfjörð Bjarmason <avar@cpan.org>2011-01-20 22:31:29 +0000
commit24c5e187667a537a3c92f78657b22ca2b537e486 (patch)
tree0ab00446d87e48f3dac842402e9d8e7eb466a3e3
parent20fc8ae0cc7ae452933c454f57eb24cd48de1541 (diff)
downloadperl-24c5e187667a537a3c92f78657b22ca2b537e486.tar.gz
Porting/release_managers_guide.pod: check the target before launching nukes
Suggest that people run "git status" *before* they go and nuke any untracked files with "git clean -dxf". This avoids mistakes where the release manager has accidentally left an important but untracked file in the checked out directory. We have built files we know about in in .gitignore, so the "git status" won't be noisy unless it should be.
-rw-r--r--Porting/release_managers_guide.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/release_managers_guide.pod b/Porting/release_managers_guide.pod
index f66d4b17e8..0ea0ba46d8 100644
--- a/Porting/release_managers_guide.pod
+++ b/Porting/release_managers_guide.pod
@@ -445,8 +445,8 @@ If you make changes, be sure to commit them.
Make sure you have a gitwise-clean perl directory (no modified files,
unpushed commits etc):
- $ git clean -dxf
$ git status
+ $ git clean -dxf
=item *