Skip to content

Commit f6ba94a

Browse files
feat: brought in Bingo's 0.9 --remote flag (#2315)
## PR Checklist - [x] Addresses an existing open issue: fixes #2314 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Bumps the Bingo version, and adds a high-level docs heading in `CLI.md`. 🎁
1 parent 633f63e commit f6ba94a

File tree

3 files changed

+48
-31
lines changed

3 files changed

+48
-31
lines changed

docs/CLI.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ It also provides a collection of custom flags per [Bingo CLI > Template Flags](h
77
npx create-typescript-app
88
```
99

10+
## Remote Repositories
11+
12+
By default, `npx create-typescript-app` creates only a local Git repository.
13+
It will not send network requests to create a repository on GitHub.
14+
15+
However, if you have an `origin` remote on GitHub, `create-typescript-app` will synchronize the local repository with it.
16+
That includes pushing the latest commits, setting repository labels, updating repository settings such as allowed merge strategies.
17+
18+
A `--remote` CLI flag exists as a convenience to create a remote repository on GitHub:
19+
20+
```shell
21+
npx create-typescript-app --remote
22+
```
23+
24+
You can run with `--remote` when creating a new repository or transitioning an existing local Git repository.
25+
1026
## Required Flags
1127

1228
These options can only be inferred when running on an existing repository.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
},
3434
"dependencies": {
3535
"@typescript-eslint/typescript-estree": "^8.48.1",
36-
"bingo": "^0.8.2",
36+
"bingo": "^0.9.1",
3737
"bingo-fs": "^0.5.6",
38-
"bingo-stratum": "^0.5.12",
38+
"bingo-stratum": "^0.5.13",
3939
"cached-factory": "^0.1.0",
4040
"cspell-populate-words": "^0.3.1",
4141
"execa": "^9.6.1",

pnpm-lock.yaml

Lines changed: 30 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)