amont 1.6.10 → 1.7.2
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 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -156,6 +156,19 @@ writes a tracked file or a directory. The full semantics:
|
|
|
156
156
|
|
|
157
157
|
**Everywhere, forever** — an opt-in, and a real one:
|
|
158
158
|
|
|
159
|
+
```sh
|
|
160
|
+
amont enroll --conventions declared
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
One command per machine: every future `git clone` and `git init` arrives
|
|
164
|
+
with the hooks. `--conventions declared` keeps the house rules (commit
|
|
165
|
+
shapes, branch names, gates) scoped to repositories that commit an
|
|
166
|
+
`amont.conf`, while the safety net — conflict markers, secrets, oversized
|
|
167
|
+
files, debug leftovers — runs everywhere. That split is what makes the
|
|
168
|
+
grant safe on a machine that also clones other people's projects, and it
|
|
169
|
+
is the backbone of [rolling amont out to a team](docs/team-rollout.md).
|
|
170
|
+
The manual spelling:
|
|
171
|
+
|
|
159
172
|
```sh
|
|
160
173
|
git config --global init.templateDir ~/.config/git/git-templates/templates
|
|
161
174
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "amont",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "Opinionated git hooks that judge what you are committing, not what is on disk",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"git",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"node": ">=18"
|
|
32
32
|
},
|
|
33
33
|
"optionalDependencies": {
|
|
34
|
-
"amont-darwin-arm64": "1.
|
|
35
|
-
"amont-darwin-x64": "1.
|
|
36
|
-
"amont-linux-arm64-gnu": "1.
|
|
37
|
-
"amont-linux-x64-gnu": "1.
|
|
38
|
-
"amont-linux-x64-musl": "1.
|
|
39
|
-
"amont-win32-x64": "1.
|
|
34
|
+
"amont-darwin-arm64": "1.7.2",
|
|
35
|
+
"amont-darwin-x64": "1.7.2",
|
|
36
|
+
"amont-linux-arm64-gnu": "1.7.2",
|
|
37
|
+
"amont-linux-x64-gnu": "1.7.2",
|
|
38
|
+
"amont-linux-x64-musl": "1.7.2",
|
|
39
|
+
"amont-win32-x64": "1.7.2"
|
|
40
40
|
}
|
|
41
41
|
}
|