explain more stuff about status
Yves Orton [Sat, 20 Dec 2008 14:11:18 +0000 (15:11 +0100)]
pod/perlrepository.pod

index 05b1e1a..35c4262 100644 (file)
@@ -166,14 +166,31 @@ that there were further changes in the working directory not yet staged. It
 also shows that there was an untracked file in the working directory, and as
 you can see shows how to change all of this. It also shows that there
 is one commit on the  working branch C<blead> which has not been pushed to the
-C<origin> remote yet.
+C<origin> remote yet. B<NOTE>: that this output is also what you see as a 
+template if you do not provide a message to c<git commit>.
+
+Assuming we commit all the mentioned changes above:
+
+  % git commit -a -m'explain git status and stuff about remotes'
+  Created commit daf8e63: explain git status and stuff about remotes
+   1 files changed, 83 insertions(+), 3 deletions(-)
+
+We can re-run git status and see something like this:
+
+  % git status
+  # On branch blead
+  # Your branch is ahead of 'origin/blead' by 2 commits.
+  #
+  # Untracked files:
+  #   (use "git add <file>..." to include in what will be committed)
+  #
+  #       deliberate.untracked
+  nothing added to commit but untracked files present (use "git add" to track)
+
 
 When in doubt, before you do anything else, check your status and read it 
 carefully, many questions are answered directly by the git status output.
 
-NOTE: that this output is also what you see as a template if you do not
-provide a message to c<git commit>.
-
 =head1 SUBMITTING A PATCH
 
 If you have a patch in mind for Perl, you should first get a copy of