easegit-cli 1.0.0 → 1.0.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 +4 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -14,11 +14,13 @@ EaseGit creates automatic safety checkpoints before dangerous Git operations and
|
|
|
14
14
|
## Installation
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
npm install -g easegit
|
|
17
|
+
npm install -g easegit-cli # installs command names: easegit (preferred) and easegit-cli
|
|
18
18
|
cd my-repo
|
|
19
|
-
easegit init
|
|
19
|
+
easegit init # or: easegit-cli init
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
+
No global install? Use `npx easegit init` (or `npx easegit-cli init`). On Windows ensure your global npm bin (e.g., `%AppData%\npm`) is on `PATH`.
|
|
23
|
+
|
|
22
24
|
## Usage
|
|
23
25
|
|
|
24
26
|
### Setup (one time)
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easegit-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Automatic checkpoints before Git can hurt you",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"easegit": "./bin/easegit"
|
|
7
|
+
"easegit": "./bin/easegit",
|
|
8
|
+
"easegit-cli": "./bin/easegit"
|
|
8
9
|
},
|
|
9
10
|
"files": [
|
|
10
11
|
"dist",
|