[cogl] doc/RELEASING: Fix the check for diffs from origin/master



commit e5c4c1ce7c6bc1c06c6fce5d516cca2e76cc5620
Author: Neil Roberts <neil linux intel com>
Date:   Wed Jun 29 13:50:11 2011 +0100

    doc/RELEASING: Fix the check for diffs from origin/master
    
    The recommended command to check for differences from master to the
    remote master was using git log with a range from the local master to
    the remote master but this wouldn't work if the local master is ahead
    of the remote master because the range is backwards. This patch
    changes it to recommend git diff --stat instead because then the
    command would work even if the two branches have diverged.

 doc/RELEASING |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/doc/RELEASING b/doc/RELEASING
index c1c956f..bbef039 100644
--- a/doc/RELEASING
+++ b/doc/RELEASING
@@ -9,7 +9,7 @@ When making a new release;
 
    and:
 
-     $ git log master..origin/master
+     $ git diff --stat master origin/master
 
    should be empty.
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]