You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<title>Git Auto-Commit - The Future Industries</title>
7
-
<meta
8
-
name="description"
9
-
content="Git Auto-Commit is a tool for automatic, context-sensitive commit message generation. Simplify your workflow and focus on coding, not commit messages."
<title>Git Auto-Commit - The Future Industries</title>
7
+
<metaname="description" content="Git Auto-Commit is a tool for automatic, context-sensitive commit message generation. Simplify your workflow and focus on coding, not commit messages." />
The development is conducted as an open source project and is
97
-
distributed under the MIT license (or other compatible
98
-
licensing, depending on the implementation). Git Auto-Commit can
99
-
be integrated into CI/CD pipelines, hook scripts, or used
100
-
manually via the command line.
101
-
</p>
86
+
<p>
87
+
<strong>Git Auto-Commit</strong> is an extension for Git designed to automatically generate meaningful, context-aware commit messages based on your code changes.
88
+
This tool streamlines the development workflow by letting you focus on writing code instead of manually crafting commit messages.
89
+
</p>
102
90
103
-
<h2>Main features:</h2>
104
-
<ul>
105
-
<li>
106
-
Analysis of changes in the work tree and automatic
107
-
generation of commit messages in natural language.
108
-
</li>
109
-
<li>
110
-
Integration with Git via the
111
-
<code>git auto</code> sub-command or configuration of user
112
-
aliases.
113
-
</li>
114
-
<li>
115
-
Support for templates and configurations for customizing
116
-
message structure to project standards (Conventional
117
-
Commits, Semantic Commit Messages, etc.).
118
-
</li>
119
-
<li>
120
-
Scalability: works both in small projects and in large
121
-
monorepositories.
122
-
</li>
123
-
</ul>
91
+
<p>
92
+
Developed as an open-source project under the MIT license (or compatible licensing), Git Auto-Commit can be integrated into CI/CD pipelines, hook scripts, or used manually via the command line.
93
+
</p>
124
94
125
-
<h2>Install</h2>
126
-
<p>
127
-
<spanclass="highlight">If you're on Windows</span><br/>
128
-
Go to the root of the project and run the command:
Copy file name to clipboardExpand all lines: README.md
+21-3Lines changed: 21 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,8 +53,26 @@ git push
53
53
54
54
- 2 Commands
55
55
56
+
#### Launching in monitoring mode
57
+
58
+
Comit observer, you dont have to think and write more `git auto` -w (--watch) will figure it out when to make a comit and commit it yourself!
59
+
60
+
```bash
61
+
git auto -w
62
+
```
63
+
64
+
#### Viewing the current version
65
+
66
+
Viewing the current version of auto-commit
67
+
68
+
```bash
69
+
git auto -v
70
+
```
71
+
72
+
#### Upgrade to a new version
73
+
74
+
Upgrade to the new auto-commit version
75
+
56
76
```bash
57
-
git auto -w - Comit observer, you dont have to think and write more `git auto` -w (--watch) will figure it out when to make a comit and commit it yourself!
58
-
git auto -v - Viewing the current version of auto-commit
59
-
git auto -u - Upgrade to the new auto-commit version
0 commit comments