summaryrefslogtreecommitdiff
path: root/cursor
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-07 23:46:42 +0200
committerPaul Buetow <paul@buetow.org>2026-02-07 23:46:42 +0200
commitf408ae894e4e10bbf4358c7c07bb9618ef1353e4 (patch)
tree0722f09473a58f1b9027e271cd6bd0e96e7a390d /cursor
parentbf56ef64278a90acab9116311e649e762d39cd34 (diff)
rename
Diffstat (limited to 'cursor')
-rw-r--r--cursor/commands/commit-and-push-to-git.md3
-rw-r--r--cursor/commands/increment-version-and-push.md3
2 files changed, 6 insertions, 0 deletions
diff --git a/cursor/commands/commit-and-push-to-git.md b/cursor/commands/commit-and-push-to-git.md
new file mode 100644
index 0000000..42132bd
--- /dev/null
+++ b/cursor/commands/commit-and-push-to-git.md
@@ -0,0 +1,3 @@
+# Commit and push to git
+
+Commit and push to git all changes you made.
diff --git a/cursor/commands/increment-version-and-push.md b/cursor/commands/increment-version-and-push.md
new file mode 100644
index 0000000..015038b
--- /dev/null
+++ b/cursor/commands/increment-version-and-push.md
@@ -0,0 +1,3 @@
+# Increment version and push
+
+Increment the version of the project, tag it in git, commit, and push. For Go-based projects, look for the internal/version.go file. For bug fixes, increment only the minor version. We are using semantic versioning, e.g., x.y.z, where z is the minor version. For new features, increment y. Never increment x (the major version) unless specified.