gitmorph 0.2.4 → 0.2.6
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 +55 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# GitMorph CLI
|
|
2
|
+
|
|
3
|
+
Command-line tool for [gitmorph.com](https://gitmorph.com). Manage repos, issues, PRs, CI/CD, and more from your terminal.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm i -g gitmorph
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or with curl:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
curl -fsSL https://gitmorph.com/cli/install.sh | sh
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Or with Homebrew:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
brew install morphllm/tap/gm
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# Authenticate
|
|
27
|
+
gm auth login
|
|
28
|
+
|
|
29
|
+
# Repositories
|
|
30
|
+
gm repo list
|
|
31
|
+
gm repo create my-project
|
|
32
|
+
gm repo clone owner/repo
|
|
33
|
+
|
|
34
|
+
# Issues
|
|
35
|
+
gm issue list
|
|
36
|
+
gm issue create --title "Bug report"
|
|
37
|
+
|
|
38
|
+
# Pull requests
|
|
39
|
+
gm pr list
|
|
40
|
+
gm pr create --title "Feature" --base main
|
|
41
|
+
|
|
42
|
+
# CI/CD
|
|
43
|
+
gm workflow list
|
|
44
|
+
gm run list
|
|
45
|
+
|
|
46
|
+
# Search
|
|
47
|
+
gm search code "function"
|
|
48
|
+
gm search repos "keyword"
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Run `gm --help` for the full command list.
|
|
52
|
+
|
|
53
|
+
## Requirements
|
|
54
|
+
|
|
55
|
+
macOS (arm64, x64) or Linux (arm64, x64). The npm package downloads a prebuilt binary during install.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gitmorph",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "GitMorph CLI — work with gitmorph.com from the command line",
|
|
5
5
|
"bin": {
|
|
6
6
|
"gm": "bin/gm"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
|
-
"url": "https://gitmorph.com/
|
|
17
|
+
"url": "https://gitmorph.com/morphllm/gitmorph"
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://gitmorph.com",
|
|
20
20
|
"keywords": [
|