Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

minimize_source_to_dependency_directives.c
// RUN: %clang_cc1 -print-dependency-directives-minimized-source %s > %t
// RUN: echo END. >> %t
// RUN: FileCheck < %t %s

#ifdef FOO
#include "a.h"
#else
void skipThisCode();
#endif

// CHECK:      #ifdef FOO
// CHECK-NEXT: #include "a.h"
// CHECK-NEXT: #endif
// CHECK-NEXT: END.