resulgit 1.0.3 → 1.0.4
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 +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,6 +39,7 @@ resulgit <command> [options]
|
|
|
39
39
|
|
|
40
40
|
### Clone & Workspace
|
|
41
41
|
|
|
42
|
+
- `resulgit init [--dir <path>] [--repo <id>] [--server <url>] [--branch <name>] [--token <token>]` - Initialize a new repository
|
|
42
43
|
- `resulgit clone --repo <id> --branch <name> [--dest <dir>]` - Clone a repository
|
|
43
44
|
- `resulgit workspace set-root --path <dir>` - Set workspace root directory
|
|
44
45
|
|
|
@@ -130,6 +131,9 @@ resulgit auth login --email user@example.com --password mypassword
|
|
|
130
131
|
# List repositories
|
|
131
132
|
resulgit repo list
|
|
132
133
|
|
|
134
|
+
# Initialize a new repository
|
|
135
|
+
resulgit init --repo 123 --branch main
|
|
136
|
+
|
|
133
137
|
# Clone a repository
|
|
134
138
|
resulgit clone --repo 123 --branch main
|
|
135
139
|
|
package/package.json
CHANGED