git0 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gg.js +1 -0
- package/package.json +1 -1
- package/readme.md +7 -13
package/gg.js
CHANGED
|
@@ -19,6 +19,7 @@ const githubHelpUrl = 'https://github.com/settings/personal-access-tokens/new'
|
|
|
19
19
|
grab('', {
|
|
20
20
|
setDefaults: true,
|
|
21
21
|
debug: false,
|
|
22
|
+
timeout: 5000,
|
|
22
23
|
onError: (error) => {
|
|
23
24
|
if (error.includes('403')) {
|
|
24
25
|
log(chalk.red('Rate limit exceeded. Please set env var GITHUB_TOKEN. Help:\n' + githubHelpUrl));
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -26,20 +26,10 @@
|
|
|
26
26
|
</p>
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
# Git0:
|
|
29
|
+
# Git0: Git Repo in Zero-Steps
|
|
30
30
|
|
|
31
|
-
A fast and smart CLI tool to search, download source & releases for your system, and
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
## 🚀 Installation
|
|
35
|
-
|
|
36
|
-
```bash
|
|
37
|
-
npm install -g git0
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
```bash
|
|
41
|
-
bun install -g git0
|
|
42
|
-
```
|
|
31
|
+
A fast and smart CLI tool to search, download source & releases for your system, and
|
|
32
|
+
instantly set up GitHub repositories with automatic dependency installation and IDE integration.
|
|
43
33
|
|
|
44
34
|

|
|
45
35
|

|
|
@@ -61,6 +51,10 @@ bun install -g git0
|
|
|
61
51
|
|
|
62
52
|
### Search and Download
|
|
63
53
|
```bash
|
|
54
|
+
# install in bun or node
|
|
55
|
+
npm i -g git0
|
|
56
|
+
bun i -g git0
|
|
57
|
+
|
|
64
58
|
# Search for repositories by name
|
|
65
59
|
gg react starter
|
|
66
60
|
|