eazy-git 0.3.0 → 0.3.1
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 +20 -20
- package/dist/git.js +69 -80
- package/dist/index.js +109 -173
- package/dist/install.js +51 -53
- package/dist/run.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -52,23 +52,23 @@ This opens an interactive menu with the following options:
|
|
|
52
52
|
|
|
53
53
|
## 🧰 Available Commands
|
|
54
54
|
|
|
55
|
-
| Command | Description
|
|
56
|
-
| ----------------- |
|
|
57
|
-
| `eazy-git`, `eg` | Launch the interactive CLI to create and manage Git branches
|
|
58
|
-
| `pull` | Pull latest changes from remote repository (`git pull origin HEAD`)
|
|
59
|
-
| `push` | Push local changes to remote repository (`git push origin HEAD`)
|
|
60
|
-
| `removelast` | Undo last commit while preserving changes in working directory (shows commit details)
|
|
61
|
-
| `mergewith` | Merge current branch with another remote branch (defaults to `origin/develop`)
|
|
62
|
-
| `commit` | Stage and commit: interactive flow (no args) or quick commit with a message
|
|
63
|
-
| `back` | Switch back to the previously checked out branch
|
|
64
|
-
| `checkout` | Switch to a specified branch or return to the previous branch
|
|
65
|
-
| `log` | Display formatted commit history with details
|
|
66
|
-
| `run` | Start development server (`npm run dev`)
|
|
67
|
-
| `runrun` | Clean development server restart (removes `.next` folder and runs `npm run dev`)
|
|
68
|
-
| `i` | Install project dependencies using configured auth token
|
|
69
|
-
| `eg config` | Open configuration menu (language, default branch, AI provider)
|
|
70
|
-
| `eg upgrade` | Upgrade eazy-git to the latest version from npm
|
|
71
|
-
| `-v`, `--version` | Display installed package version
|
|
55
|
+
| Command | Description |
|
|
56
|
+
| ----------------- | ------------------------------------------------------------------------------------- |
|
|
57
|
+
| `eazy-git`, `eg` | Launch the interactive CLI to create and manage Git branches |
|
|
58
|
+
| `pull` | Pull latest changes from remote repository (`git pull origin HEAD`) |
|
|
59
|
+
| `push` | Push local changes to remote repository (`git push origin HEAD`) |
|
|
60
|
+
| `removelast` | Undo last commit while preserving changes in working directory (shows commit details) |
|
|
61
|
+
| `mergewith` | Merge current branch with another remote branch (defaults to `origin/develop`) |
|
|
62
|
+
| `commit` | Stage and commit: interactive flow (no args) or quick commit with a message |
|
|
63
|
+
| `back` | Switch back to the previously checked out branch |
|
|
64
|
+
| `checkout` | Switch to a specified branch or return to the previous branch |
|
|
65
|
+
| `log` | Display formatted commit history with details |
|
|
66
|
+
| `run` | Start development server (`npm run dev`) |
|
|
67
|
+
| `runrun` | Clean development server restart (removes `.next` folder and runs `npm run dev`) |
|
|
68
|
+
| `i` | Install project dependencies using configured auth token |
|
|
69
|
+
| `eg config` | Open configuration menu (language, default branch, AI provider) |
|
|
70
|
+
| `eg upgrade` | Upgrade eazy-git to the latest version from npm |
|
|
71
|
+
| `-v`, `--version` | Display installed package version |
|
|
72
72
|
|
|
73
73
|
---
|
|
74
74
|
|
|
@@ -89,7 +89,7 @@ eg config
|
|
|
89
89
|
|
|
90
90
|
## 🤖 AI Commit Suggestions
|
|
91
91
|
|
|
92
|
-
When using the "Add Changes to Branch" flow, eazy-git can generate commit message suggestions using AI. Supported providers:
|
|
92
|
+
When using the "Add Changes to Branch" flow or running `commit` without arguments, eazy-git can generate commit message suggestions using AI. Supported providers:
|
|
93
93
|
|
|
94
94
|
- **Claude**
|
|
95
95
|
- **Opencode**
|
|
@@ -193,8 +193,8 @@ Distributed under the MIT [License](LICENSE).
|
|
|
193
193
|
|
|
194
194
|
## 📬 Contact
|
|
195
195
|
|
|
196
|
-
- 🌐 **Portfolio**: [Visit my website](https://
|
|
197
|
-
- 💼 **LinkedIn**: [linkedin.com/in/
|
|
196
|
+
- 🌐 **Portfolio**: [Visit my website](https://jaimetorresv.com)
|
|
197
|
+
- 💼 **LinkedIn**: [linkedin.com/in/jaimetorresv](https://www.linkedin.com/in/jaimetorresv/)
|
|
198
198
|
- 📧 **Email**: [imjaimetorresv@gmail.com](mailto:imjaimetorresv@gmail.com)
|
|
199
199
|
- 🐙 **GitHub**: [github.com/jaime00](https://github.com/jaime00)
|
|
200
200
|
|