init
Initialize rung in the current Git repository. This creates the .git/rung/ directory to store stack state.
Usage
rung initWhat It Does
Running rung init creates:
.git/rung/├── stack.json # Branch relationships and PR numbers├── config.json # Repository-specific settings└── backups/ # Sync backup data for undoExample
$ cd my-project$ rung init✓ Initialized rung in /path/to/my-projectIf rung is already initialized:
$ rung initℹ rung is already initializedNotes
- Run this once per repository, before using any other rung commands
- The
.git/rung/directory is local and not committed to git - All stack state travels with your
.gitdirectory