├── .gitignore ├── LICENSE ├── README.md ├── examples.md ├── package.json ├── src ├── branchManager.ts ├── index.ts └── types.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-siles/branch-thinking/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-siles/branch-thinking/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-siles/branch-thinking/HEAD/README.md -------------------------------------------------------------------------------- /examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-siles/branch-thinking/HEAD/examples.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-siles/branch-thinking/HEAD/package.json -------------------------------------------------------------------------------- /src/branchManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-siles/branch-thinking/HEAD/src/branchManager.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-siles/branch-thinking/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-siles/branch-thinking/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-siles/branch-thinking/HEAD/tsconfig.json --------------------------------------------------------------------------------