eazy-git 0.1.7 → 0.1.8
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 +13 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,19 +48,19 @@ eg
|
|
|
48
48
|
|
|
49
49
|
| Command | Description |
|
|
50
50
|
| ---------------------------- | --------------------------------------------- |
|
|
51
|
-
| `eazy-git`, `eg`, `asd` | Launch the interactive CLI to create and manage Git branches (note: `asd` is an
|
|
52
|
-
| `pull` | Pull from
|
|
53
|
-
| `push` | Push to
|
|
54
|
-
| `removelast` |
|
|
55
|
-
| `mergewith` | Merge with another
|
|
56
|
-
| `commit` |
|
|
57
|
-
| `back` |
|
|
58
|
-
| `log` |
|
|
59
|
-
| `run` | npm run dev |
|
|
60
|
-
| `runrun` |
|
|
61
|
-
| `i` | Install dependencies
|
|
62
|
-
| `-version`, `-v` | Display
|
|
63
|
-
| `-help`, `-h` *(under construction 🚧)* |
|
|
51
|
+
| `eazy-git`, `eg`, `asd` | Launch the interactive CLI to create and manage Git branches (note: `asd` is an easter egg command 🥚) |
|
|
52
|
+
| `pull` | Pull latest changes from remote repository (`git pull origin HEAD`) |
|
|
53
|
+
| `push` | Push local changes to remote repository (`git push origin HEAD`) |
|
|
54
|
+
| `removelast` | Undo last commit while preserving changes in working directory |
|
|
55
|
+
| `mergewith` | Merge current branch with another remote branch (defaults to `origin/develop`) |
|
|
56
|
+
| `commit` | Stage and commit changes with an interactive prompt |
|
|
57
|
+
| `back` | Switch back to the previously checked out branch |
|
|
58
|
+
| `log` | Display formatted commit history with details |
|
|
59
|
+
| `run` | Start development server (`npm run dev`) |
|
|
60
|
+
| `runrun` | Clean development server restart (removes `.next` folder and runs `npm run dev`) |
|
|
61
|
+
| `i` | Install project dependencies using configured auth token |
|
|
62
|
+
| `-version`, `-v` | Display installed package version |
|
|
63
|
+
| `-help`, `-h` *(under construction 🚧)* | Show command usage and documentation |
|
|
64
64
|
|
|
65
65
|
---
|
|
66
66
|
|