eazy-git 0.2.8 → 0.2.9
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 +16 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -52,22 +52,22 @@ This opens an interactive menu with the following options:
|
|
|
52
52
|
|
|
53
53
|
## 🧰 Available Commands
|
|
54
54
|
|
|
55
|
-
| Command
|
|
56
|
-
|
|
|
57
|
-
| `eazy-git`, `eg`
|
|
58
|
-
| `pull`
|
|
59
|
-
| `push`
|
|
60
|
-
| `removelast`
|
|
61
|
-
| `mergewith`
|
|
62
|
-
| `commit`
|
|
63
|
-
| `back`
|
|
64
|
-
| `checkout`
|
|
65
|
-
| `log`
|
|
66
|
-
| `run`
|
|
67
|
-
| `runrun`
|
|
68
|
-
| `i`
|
|
69
|
-
| `eg config`
|
|
70
|
-
| `-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 (asks for confirmation) |
|
|
61
|
+
| `mergewith` | Merge current branch with another remote branch (defaults to `origin/develop`) |
|
|
62
|
+
| `commit` | Stage all changes and commit with a provided 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
|
+
| `-v`, `--version` | Display installed package version |
|
|
71
71
|
|
|
72
72
|
---
|
|
73
73
|
|