@bshsolutions/git 0.0.1-alpha → 0.0.3-alpha
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 -31
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,41 +1,23 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @bshsolutions/git
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
[](https://github.com/bsh-devsolutions/git.bsh)
|
|
5
|
-
|
|
6
|
-
A small **Node.js CLI** for everyday Git workflows: quick **`hello`** checks and a **`commit`** command that can install a **`commit-msg`** hook so messages stay consistent.
|
|
7
|
-
|
|
8
|
-
| | |
|
|
9
|
-
| --- | --- |
|
|
10
|
-
| **Binary** | `git` |
|
|
11
|
-
| **Package** | [`@bshsolutions/git`](https://www.npmjs.com/package/@bshsolutions/git) |
|
|
12
|
-
|
|
13
|
-
---
|
|
14
|
-
|
|
15
|
-
## Features
|
|
3
|
+
A friendly CLI for common Git workflows.
|
|
16
4
|
|
|
17
|
-
|
|
18
|
-
- **Structured commits** — validate messages and optionally enforce them via a Git hook.
|
|
19
|
-
- **`npx`-first** — run without a global install, or `npm link` for local development.
|
|
5
|
+
## Usage
|
|
20
6
|
|
|
21
|
-
|
|
7
|
+
```sh
|
|
8
|
+
npx @bshsolutions/git --help
|
|
9
|
+
```
|
|
22
10
|
|
|
23
11
|
## Documentation
|
|
24
12
|
|
|
25
|
-
docs/
|
|
26
|
-
- `├──` [**Documentation home**](docs/README.md)
|
|
27
|
-
- `├──` [**Setup**](docs/setup.md)
|
|
28
|
-
- `├──` [**Commands**](docs/commands.md)
|
|
29
|
-
- `└──` [**Commit**](docs/commit.md)
|
|
13
|
+
Full guides live in the repo: [docs](docs/README.md)
|
|
30
14
|
|
|
31
|
-
|
|
15
|
+
## Links
|
|
32
16
|
|
|
33
|
-
|
|
17
|
+
- [npm](https://www.npmjs.com/package/@bshsolutions/git)
|
|
18
|
+
- [Repository](https://github.com/bsh-devsolutions/git.bsh)
|
|
19
|
+
- [Issues](https://github.com/bsh-devsolutions/git.bsh/issues)
|
|
34
20
|
|
|
35
|
-
|
|
36
|
-
npm install
|
|
37
|
-
npm run build
|
|
38
|
-
npx @bshsolutions/git hello --name you
|
|
39
|
-
```
|
|
21
|
+
## License
|
|
40
22
|
|
|
41
|
-
|
|
23
|
+
[](https://opensource.org/licenses/MIT)
|