Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

line-ranges.cpp
// RUN: grep -Ev "// *[A-Z-]+:" %s \
// RUN:   | clang-format -style=LLVM -lines=1:1 -lines=5:5 \
// RUN:   | FileCheck -strict-whitespace %s
// CHECK: {{^int\ \*i;$}}
  int*i;

// CHECK: {{^int\ \ \*\ \ i;$}}
int  *  i; 

// CHECK: {{^int\ \*i;$}}
int   *   i;

// RUN: not clang-format -lines=0:1 < %s 2>&1 \
// RUN:   | FileCheck -strict-whitespace -check-prefix=CHECK0 %s
// CHECK0: error: start line should be at least 1

// RUN: not clang-format -lines=2:1 < %s 2>&1 \
// RUN:   | FileCheck -strict-whitespace -check-prefix=CHECK1 %s
// CHECK1: error: start line should not exceed end line