Diff
Not logged in

Differences From:

File src/branch.c part of check-in [2ad378d065] - Branching now working correctly, including adding of bgcolor tag and correct R line by jnc on 2007-09-23 15:02:58. [view]

To:

File src/branch.c part of check-in [07eaead5dc] - Added RSS feed. You can set the RSS title, description in Setup. Added header to style to include title and pointer to the new RSS feed. The new RSS feed is BaseURL/timeline.rss by jnc on 2007-09-23 18:24:21. Also file src/branch.c part of check-in [dad40ffac0] - Merge the RSS changes. by drh on 2007-09-23 20:18:58. [view]

@@ -20,10 +20,9 @@
 **   http://www.hwaci.com/drh/
 **
 *******************************************************************************
 **
-** This file contains code used to check-out versions of the project
-** from the local repository.
+** This file contains code used to create new branches within a repository.
 */
 #include "config.h"
 #include "branch.h"
 #include <assert.h>
@@ -188,9 +187,10 @@
   n = strlen(g.argv[2]);
   if( n>=2 && strncmp(g.argv[2],"new",n)==0 ){
     branch_new();
   }else if( n>=2 && strncmp(g.argv[2],"list",n)==0 ){
+    fossil_panic("branch list is not yet completed");
   }else{
     fossil_panic("branch subcommand should be one of: "
                  "new list");
   }
 }