gitpick 3.20.0-canary.2 → 3.20.0-canary.3
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/README.md +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,6 +28,18 @@ Or full URL:
|
|
|
28
28
|
npx gitpick https://github.com/TanStack/router
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
+
Or clone a specific directory:
|
|
32
|
+
|
|
33
|
+
```sh
|
|
34
|
+
npx gitpick https://github.com/TanStack/router/tree/main/examples
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Or clone a specific file:
|
|
38
|
+
|
|
39
|
+
```sh
|
|
40
|
+
npx gitpick https://github.com/TanStack/router/tree/main/package.json
|
|
41
|
+
```
|
|
42
|
+
|
|
31
43
|
- Clone a file or directory from a GitHub repository.
|
|
32
44
|
- Autodetect branch and target directory if not provided explicitly.
|
|
33
45
|
- Clone from public or private repositories using personal access tokens.
|