Add aliases ci and co for commit and checkout. Closes: #500388
authorJoey Hess <joey@gnu.kitenet.net>
Mon, 13 Apr 2009 23:14:04 +0000 (19:14 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Mon, 13 Apr 2009 23:14:04 +0000 (19:14 -0400)
debian/changelog
pristine-tar

index 95a8822..6c1767e 100644 (file)
@@ -20,8 +20,9 @@ pristine-tar (1.00) UNRELEASED; urgency=low
   * pristine-gz: Avoid passing -F to zgz if --original-name
     is passed. This bug prevented pristine-gz gengz from
     recreating the gz in some cases. 
+  * Add aliases ci and co for commit and checkout. Closes: #500388
 
-  Stats: Only 1 known failure (on star's tarball).
+  Stats:
   Deltas for all 14294 tarballs in the Debian archive now use XXX MB total.
   Mean delta size:    Median:    Mode: 
 
index 4e914fb..5d3a6ed 100755 (executable)
@@ -783,11 +783,11 @@ elsif ($command eq 'gendelta') {
        usage unless @ARGV == 2;
        gendelta(@ARGV);
 }
-elsif ($command eq 'commit') {
+elsif ($command eq 'commit' || $command eq 'ci') {
        usage unless @ARGV >= 1;
        commit(@ARGV);
 }
-elsif ($command eq 'checkout') {
+elsif ($command eq 'checkout' || $command eq 'co') {
        usage unless @ARGV == 1;
        checkout(@ARGV);
 }