Skip to content

Commit 87b5979

Browse files
committed
Deploying to gh-pages from @ 0b95c76 🚀
1 parent 09a2e54 commit 87b5979

File tree

8 files changed

+184
-50
lines changed

8 files changed

+184
-50
lines changed

commands/bump/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2785,7 +2785,7 @@
27852785

27862786
<h1>bump</h1>
27872787

2788-
<p><img alt="Bump version" src="../../images/bump.gif" /></p>
2788+
<p><img alt="Bump version" src="../../images/cli_interactive/bump.gif" /></p>
27892789
<h2 id="about">About<a class="headerlink" href="#about" title="Permanent link">&para;</a></h2>
27902790
<p><code>cz bump</code> is a powerful command that <strong>automatically</strong> determines and increases your project's version number based on your commit history.</p>
27912791
<p>It analyzes your commits to determine the appropriate version increment according to semantic versioning principles.</p>
@@ -3315,7 +3315,7 @@ <h3 id="-yes"><code>--yes</code><a class="headerlink" href="#-yes" title="Perman
33153315
<span class="md-icon" title="Last update">
33163316
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21 13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6 0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4 2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10 9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1 7.5 7.1 7.9l-.1.2z"/></svg>
33173317
</span>
3318-
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 1, 2026 10:53:42 UTC">February 1, 2026</span>
3318+
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="February 24, 2026 16:11:53 UTC">February 24, 2026</span>
33193319
</span>
33203320

33213321

images/bump.gif

-93.6 KB
Binary file not shown.

images/bump.tape

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
Output cli_interactive/bump.gif
2+
3+
Require cz
4+
5+
# Use bash for cross-platform compatibility (macOS, Linux, Windows)
6+
Set Shell bash
7+
8+
Set FontSize 16
9+
Set Width 878
10+
Set Height 568
11+
Set Padding 20
12+
Set TypingSpeed 50ms
13+
14+
Set Theme {
15+
"name": "Commitizen",
16+
"black": "#232628",
17+
"red": "#fc4384",
18+
"green": "#b3e33b",
19+
"yellow": "#ffa727",
20+
"blue": "#75dff2",
21+
"magenta": "#ae89fe",
22+
"cyan": "#708387",
23+
"white": "#d5d5d0",
24+
"brightBlack": "#626566",
25+
"brightRed": "#ff7fac",
26+
"brightGreen": "#c8ed71",
27+
"brightYellow": "#ebdf86",
28+
"brightBlue": "#75dff2",
29+
"brightMagenta": "#ae89fe",
30+
"brightCyan": "#b1c6ca",
31+
"brightWhite": "#f9f9f4",
32+
"background": "#1e1e2e",
33+
"foreground": "#afafaf",
34+
"cursor": "#c7c7c7"
35+
}
36+
37+
# Hide initial shell prompt
38+
Hide
39+
40+
# Wait for terminal to be ready
41+
Sleep 1s
42+
43+
# Set a clean, simple prompt (while hidden)
44+
Type "PS1='$ '"
45+
Enter
46+
Sleep 300ms
47+
48+
# Create a clean temporary directory for recording
49+
Type "rm -rf /tmp/commitizen-example && mkdir -p /tmp/commitizen-example && cd /tmp/commitizen-example"
50+
Enter
51+
Sleep 500ms
52+
53+
# Initialize git repository
54+
Type "git init"
55+
Enter
56+
Type "git config user.email 'you@example.com'"
57+
Enter
58+
Type "git config user.name 'Your Name'"
59+
Enter
60+
Sleep 500ms
61+
62+
# Initialize commitizen config with version 0.0.1 and changelog enabled
63+
Type `cat > pyproject.toml << 'EOF'`
64+
Enter
65+
Sleep 100ms
66+
Type `[tool.commitizen]`
67+
Enter
68+
Sleep 100ms
69+
Type `version = "0.0.1"`
70+
Enter
71+
Sleep 100ms
72+
Type `update_changelog_on_bump = true`
73+
Enter
74+
Sleep 100ms
75+
Type "EOF"
76+
Enter
77+
Sleep 300ms
78+
79+
# Create initial commit (no tag, so cz bump will ask "Is this the first tag created?")
80+
Type "git add pyproject.toml"
81+
Enter
82+
Sleep 300ms
83+
84+
Type "git commit -m 'chore: initial commit'"
85+
Enter
86+
Sleep 500ms
87+
88+
# Create a feat commit that will trigger a MINOR bump (0.0.1 -> 0.1.0)
89+
Type "echo 'new feature' > feature.py"
90+
Enter
91+
Sleep 300ms
92+
93+
Type "git add feature.py"
94+
Enter
95+
Sleep 300ms
96+
97+
Type "git commit -m 'feat: add awesome new feature'"
98+
Enter
99+
Sleep 500ms
100+
101+
# Clear the screen to start fresh
102+
Type "clear"
103+
Enter
104+
Sleep 500ms
105+
106+
# Show commands from here
107+
Show
108+
109+
# Step 1: Show current version
110+
Type "cz version --project"
111+
Sleep 500ms
112+
Enter
113+
Sleep 1s
114+
115+
# Step 2: Run cz bump (no existing tag, will prompt for first tag)
116+
Type "cz bump"
117+
Sleep 500ms
118+
Enter
119+
120+
# Wait for the "Is this the first tag created?" prompt
121+
Sleep 2s
122+
123+
# Answer Yes to "Is this the first tag created?" (default is Yes, just press Enter)
124+
Enter
125+
Sleep 3s
126+
127+
# Step 3: Show new version after bump
128+
Type "cz version --project"
129+
Sleep 500ms
130+
Enter
131+
Sleep 1s
132+
133+
# Wait for final output
134+
Sleep 3s

images/cli_interactive/bump.gif

90.5 KB
Loading

images/cli_interactive/commit.gif

-1.48 KB
Loading

images/cli_interactive/init.gif

-1.25 KB
Loading

sitemap.xml

Lines changed: 48 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -2,194 +2,194 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>https://commitizen-tools.github.io/commitizen/</loc>
5-
<lastmod>2026-02-23</lastmod>
5+
<lastmod>2026-02-24</lastmod>
66
</url>
77
<url>
88
<loc>https://commitizen-tools.github.io/commitizen/exit_codes/</loc>
9-
<lastmod>2026-02-23</lastmod>
9+
<lastmod>2026-02-24</lastmod>
1010
</url>
1111
<url>
1212
<loc>https://commitizen-tools.github.io/commitizen/external_links/</loc>
13-
<lastmod>2026-02-23</lastmod>
13+
<lastmod>2026-02-24</lastmod>
1414
</url>
1515
<url>
1616
<loc>https://commitizen-tools.github.io/commitizen/faq/</loc>
17-
<lastmod>2026-02-23</lastmod>
17+
<lastmod>2026-02-24</lastmod>
1818
</url>
1919
<url>
2020
<loc>https://commitizen-tools.github.io/commitizen/features_wont_add/</loc>
21-
<lastmod>2026-02-23</lastmod>
21+
<lastmod>2026-02-24</lastmod>
2222
</url>
2323
<url>
2424
<loc>https://commitizen-tools.github.io/commitizen/history/</loc>
25-
<lastmod>2026-02-23</lastmod>
25+
<lastmod>2026-02-24</lastmod>
2626
</url>
2727
<url>
2828
<loc>https://commitizen-tools.github.io/commitizen/commands/bump/</loc>
29-
<lastmod>2026-02-23</lastmod>
29+
<lastmod>2026-02-24</lastmod>
3030
</url>
3131
<url>
3232
<loc>https://commitizen-tools.github.io/commitizen/commands/changelog/</loc>
33-
<lastmod>2026-02-23</lastmod>
33+
<lastmod>2026-02-24</lastmod>
3434
</url>
3535
<url>
3636
<loc>https://commitizen-tools.github.io/commitizen/commands/check/</loc>
37-
<lastmod>2026-02-23</lastmod>
37+
<lastmod>2026-02-24</lastmod>
3838
</url>
3939
<url>
4040
<loc>https://commitizen-tools.github.io/commitizen/commands/commit/</loc>
41-
<lastmod>2026-02-23</lastmod>
41+
<lastmod>2026-02-24</lastmod>
4242
</url>
4343
<url>
4444
<loc>https://commitizen-tools.github.io/commitizen/commands/example/</loc>
45-
<lastmod>2026-02-23</lastmod>
45+
<lastmod>2026-02-24</lastmod>
4646
</url>
4747
<url>
4848
<loc>https://commitizen-tools.github.io/commitizen/commands/info/</loc>
49-
<lastmod>2026-02-23</lastmod>
49+
<lastmod>2026-02-24</lastmod>
5050
</url>
5151
<url>
5252
<loc>https://commitizen-tools.github.io/commitizen/commands/init/</loc>
53-
<lastmod>2026-02-23</lastmod>
53+
<lastmod>2026-02-24</lastmod>
5454
</url>
5555
<url>
5656
<loc>https://commitizen-tools.github.io/commitizen/commands/ls/</loc>
57-
<lastmod>2026-02-23</lastmod>
57+
<lastmod>2026-02-24</lastmod>
5858
</url>
5959
<url>
6060
<loc>https://commitizen-tools.github.io/commitizen/commands/schema/</loc>
61-
<lastmod>2026-02-23</lastmod>
61+
<lastmod>2026-02-24</lastmod>
6262
</url>
6363
<url>
6464
<loc>https://commitizen-tools.github.io/commitizen/commands/version/</loc>
65-
<lastmod>2026-02-23</lastmod>
65+
<lastmod>2026-02-24</lastmod>
6666
</url>
6767
<url>
6868
<loc>https://commitizen-tools.github.io/commitizen/config/bump/</loc>
69-
<lastmod>2026-02-23</lastmod>
69+
<lastmod>2026-02-24</lastmod>
7070
</url>
7171
<url>
7272
<loc>https://commitizen-tools.github.io/commitizen/config/changelog/</loc>
73-
<lastmod>2026-02-23</lastmod>
73+
<lastmod>2026-02-24</lastmod>
7474
</url>
7575
<url>
7676
<loc>https://commitizen-tools.github.io/commitizen/config/check/</loc>
77-
<lastmod>2026-02-23</lastmod>
77+
<lastmod>2026-02-24</lastmod>
7878
</url>
7979
<url>
8080
<loc>https://commitizen-tools.github.io/commitizen/config/commit/</loc>
81-
<lastmod>2026-02-23</lastmod>
81+
<lastmod>2026-02-24</lastmod>
8282
</url>
8383
<url>
8484
<loc>https://commitizen-tools.github.io/commitizen/config/configuration_file/</loc>
85-
<lastmod>2026-02-23</lastmod>
85+
<lastmod>2026-02-24</lastmod>
8686
</url>
8787
<url>
8888
<loc>https://commitizen-tools.github.io/commitizen/config/option/</loc>
89-
<lastmod>2026-02-23</lastmod>
89+
<lastmod>2026-02-24</lastmod>
9090
</url>
9191
<url>
9292
<loc>https://commitizen-tools.github.io/commitizen/config/version_provider/</loc>
93-
<lastmod>2026-02-23</lastmod>
93+
<lastmod>2026-02-24</lastmod>
9494
</url>
9595
<url>
9696
<loc>https://commitizen-tools.github.io/commitizen/contributing/contributing/</loc>
97-
<lastmod>2026-02-23</lastmod>
97+
<lastmod>2026-02-24</lastmod>
9898
</url>
9999
<url>
100100
<loc>https://commitizen-tools.github.io/commitizen/contributing/contributing_tldr/</loc>
101-
<lastmod>2026-02-23</lastmod>
101+
<lastmod>2026-02-24</lastmod>
102102
</url>
103103
<url>
104104
<loc>https://commitizen-tools.github.io/commitizen/contributing/pull_request/</loc>
105-
<lastmod>2026-02-23</lastmod>
105+
<lastmod>2026-02-24</lastmod>
106106
</url>
107107
<url>
108108
<loc>https://commitizen-tools.github.io/commitizen/customization/changelog_template/</loc>
109-
<lastmod>2026-02-23</lastmod>
109+
<lastmod>2026-02-24</lastmod>
110110
</url>
111111
<url>
112112
<loc>https://commitizen-tools.github.io/commitizen/customization/config_file/</loc>
113-
<lastmod>2026-02-23</lastmod>
113+
<lastmod>2026-02-24</lastmod>
114114
</url>
115115
<url>
116116
<loc>https://commitizen-tools.github.io/commitizen/customization/python_class/</loc>
117-
<lastmod>2026-02-23</lastmod>
117+
<lastmod>2026-02-24</lastmod>
118118
</url>
119119
<url>
120120
<loc>https://commitizen-tools.github.io/commitizen/third-party-plugins/about/</loc>
121-
<lastmod>2026-02-23</lastmod>
121+
<lastmod>2026-02-24</lastmod>
122122
</url>
123123
<url>
124124
<loc>https://commitizen-tools.github.io/commitizen/third-party-plugins/commitizen-deno-provider/</loc>
125-
<lastmod>2026-02-23</lastmod>
125+
<lastmod>2026-02-24</lastmod>
126126
</url>
127127
<url>
128128
<loc>https://commitizen-tools.github.io/commitizen/third-party-plugins/commitizen-emoji/</loc>
129-
<lastmod>2026-02-23</lastmod>
129+
<lastmod>2026-02-24</lastmod>
130130
</url>
131131
<url>
132132
<loc>https://commitizen-tools.github.io/commitizen/third-party-plugins/conventional-jira/</loc>
133-
<lastmod>2026-02-23</lastmod>
133+
<lastmod>2026-02-24</lastmod>
134134
</url>
135135
<url>
136136
<loc>https://commitizen-tools.github.io/commitizen/third-party-plugins/cz-ai/</loc>
137-
<lastmod>2026-02-23</lastmod>
137+
<lastmod>2026-02-24</lastmod>
138138
</url>
139139
<url>
140140
<loc>https://commitizen-tools.github.io/commitizen/third-party-plugins/cz-conventional-gitmoji/</loc>
141-
<lastmod>2026-02-23</lastmod>
141+
<lastmod>2026-02-24</lastmod>
142142
</url>
143143
<url>
144144
<loc>https://commitizen-tools.github.io/commitizen/third-party-plugins/cz-emoji/</loc>
145-
<lastmod>2026-02-23</lastmod>
145+
<lastmod>2026-02-24</lastmod>
146146
</url>
147147
<url>
148148
<loc>https://commitizen-tools.github.io/commitizen/third-party-plugins/cz-legacy/</loc>
149-
<lastmod>2026-02-23</lastmod>
149+
<lastmod>2026-02-24</lastmod>
150150
</url>
151151
<url>
152152
<loc>https://commitizen-tools.github.io/commitizen/third-party-plugins/cz-path/</loc>
153-
<lastmod>2026-02-23</lastmod>
153+
<lastmod>2026-02-24</lastmod>
154154
</url>
155155
<url>
156156
<loc>https://commitizen-tools.github.io/commitizen/third-party-plugins/github-jira-conventional/</loc>
157-
<lastmod>2026-02-23</lastmod>
157+
<lastmod>2026-02-24</lastmod>
158158
</url>
159159
<url>
160160
<loc>https://commitizen-tools.github.io/commitizen/tutorials/auto_check/</loc>
161-
<lastmod>2026-02-23</lastmod>
161+
<lastmod>2026-02-24</lastmod>
162162
</url>
163163
<url>
164164
<loc>https://commitizen-tools.github.io/commitizen/tutorials/auto_prepare_commit_message/</loc>
165-
<lastmod>2026-02-23</lastmod>
165+
<lastmod>2026-02-24</lastmod>
166166
</url>
167167
<url>
168168
<loc>https://commitizen-tools.github.io/commitizen/tutorials/dev_releases/</loc>
169-
<lastmod>2026-02-23</lastmod>
169+
<lastmod>2026-02-24</lastmod>
170170
</url>
171171
<url>
172172
<loc>https://commitizen-tools.github.io/commitizen/tutorials/github_actions/</loc>
173-
<lastmod>2026-02-23</lastmod>
173+
<lastmod>2026-02-24</lastmod>
174174
</url>
175175
<url>
176176
<loc>https://commitizen-tools.github.io/commitizen/tutorials/gitlab_ci/</loc>
177-
<lastmod>2026-02-23</lastmod>
177+
<lastmod>2026-02-24</lastmod>
178178
</url>
179179
<url>
180180
<loc>https://commitizen-tools.github.io/commitizen/tutorials/jenkins_pipeline/</loc>
181-
<lastmod>2026-02-23</lastmod>
181+
<lastmod>2026-02-24</lastmod>
182182
</url>
183183
<url>
184184
<loc>https://commitizen-tools.github.io/commitizen/tutorials/monorepo_guidance/</loc>
185-
<lastmod>2026-02-23</lastmod>
185+
<lastmod>2026-02-24</lastmod>
186186
</url>
187187
<url>
188188
<loc>https://commitizen-tools.github.io/commitizen/tutorials/tag_format/</loc>
189-
<lastmod>2026-02-23</lastmod>
189+
<lastmod>2026-02-24</lastmod>
190190
</url>
191191
<url>
192192
<loc>https://commitizen-tools.github.io/commitizen/tutorials/writing_commits/</loc>
193-
<lastmod>2026-02-23</lastmod>
193+
<lastmod>2026-02-24</lastmod>
194194
</url>
195195
</urlset>

sitemap.xml.gz

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)