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.
Files changed (2) hide show
  1. package/README.md +13 -13
  2. 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 little easter egg command 🥚) |
52
- | `pull` | Pull from head |
53
- | `push` | Push to head |
54
- | `removelast` | Remove last commit |
55
- | `mergewith` | Merge with another origin branch |
56
- | `commit` | Commit changes |
57
- | `back` | Go back to previous branch |
58
- | `log` | Show commit log |
59
- | `run` | npm run dev |
60
- | `runrun` | Remove .next folder and run dev |
61
- | `i` | Install dependencies with auth token |
62
- | `-version`, `-v` | Display the installed version |
63
- | `-help`, `-h` *(under construction 🚧)* | Display help or usage information |
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eazy-git",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "author": "Jaime Torres",