René's URL Explorer Experiment


Title: fix(security): prevent command injection via shell=True (CWE-78) by bearomorphism · Pull Request #1941 · commitizen-tools/commitizen · GitHub

Open Graph Title: fix(security): prevent command injection via shell=True (CWE-78) by bearomorphism · Pull Request #1941 · commitizen-tools/commitizen

X Title: fix(security): prevent command injection via shell=True (CWE-78) by bearomorphism · Pull Request #1941 · commitizen-tools/commitizen

Description: Description Fix command injection vulnerability (CWE-78) where shell=True in cmd.run() allowed arbitrary command execution via user-controlled values interpolated into git commands (e.g., annotated_tag_message in pyproject.toml). Closes #1918 Changes Split cmd.run() into two explicit APIs: cmd.run(Sequence[str]) -- executes commands with shell=False (safe, no injection) cmd.run(str) -- deprecated, emits DeprecationWarning, still uses shell=True for backward compat cmd.run_shell(str) -- explicit opt-in for shell=True (only used by user-defined hooks) Converted all git operations to list-based execution (shell=False): git.tag(), git.add(), git.commit(), git.get_commits(), git.get_tags() git.get_filenames_in_commit(), git.tag_exist(), git.is_signed_tag() git.get_tag_message(), git.get_tag_names(), git.find_git_project_root() git.is_staging_clean(), git.is_git_project(), git.get_core_editor() git._get_log_as_str_list(), git.get_default_branch() Eliminated args string splitting (list->string->list round-trip): git.commit(args=...) and git.get_commits(args=...) now accept Sequence[str] instead of str cli.py passes extra_cli_args as a list directly from argparse (no " ".join()) bump._get_commit_args() returns list[str] instead of joined string This preserves arguments with spaces that were previously broken by naive .split() Other improvements: git.commit() uses env={"GIT_COMMITTER_DATE": ...} instead of OS-specific shell tricks (cmd /v /c on Windows, env prefix on Unix) Removed _create_commit_cmd_string() helper (no longer needed) Removed shell quoting artifacts from get_tags() and get_tag_message() format strings (fixes a Windows bug where literal quotes appeared in output) hooks.py uses cmd.run_shell() -- intentionally shell-based for user-defined hooks with pipes/redirects Checklist I have read the contributing guidelines Was generative AI tooling used to co-author this PR? Yes (please specify the tool below) Generated-by: GitHub Copilot CLI following the guidelines Code Changes Add test cases to all the changes you introduce Run uv run poe all locally to ensure this change passes linter check and tests Manually test the changes: Verify the feature/bug fix works as expected in real-world scenarios Test edge cases and error conditions Ensure backward compatibility is maintained Document any manual testing steps performed Update the documentation for the changes Documentation Changes N/A - Internal implementation change only, no user-facing behavior or CLI changes. Expected Behavior User-controlled values (tag names, messages, file paths) are passed as literal arguments to git commands without shell interpretation, preventing command injection attacks in CI/CD pipelines. Steps to Test This Pull Request Create a pyproject.toml with a malicious annotated_tag_message: [tool.commitizen] name = "cz_conventional_commits" version = "0.1.0" tag_format = "$version" annotated_tag = true annotated_tag_message = 'Release" && echo INJECTED && echo "' Run cz bump --yes Verify that INJECTED is NOT printed (command not executed) Verify the tag is created with the literal message string Verification: All Attack Vectors from #1918 Addressed Affected code (from issue) Fix applied cmd.run(f'git tag {option} {tag} -m "{msg or tag}"') cmd.run(["git", "tag", option, tag, "-m", msg or tag]) (line 177) cmd.run(f"git tag {tag}") cmd.run(["git", "tag", tag]) (line 171) cmd.run(f"git add {' '.join(args)}") cmd.run(["git", "add", *args]) (line 181) subprocess.Popen(cmd, shell=True) shell=False for all list-based cmd.run() calls Manual validation result: Running cz bump with a malicious annotated_tag_message = 'Release" && echo INJECTED && echo "' -- the injected command was NOT executed, and the tag was created with the literal string as its message. Backward Compatibility cmd.run() accepts both str (deprecated, emits DeprecationWarning, uses shell=True) and Sequence[str] (safe, shell=False). External plugins calling cmd.run("git ...") will continue to work but receive a deprecation warning guiding them to migrate. Additional Context Related: CWE-78 (OS Command Injection) The attack vector requires a poisoned pyproject.toml (e.g., via malicious PR) that gets executed in CI/CD running cz bump. With shell=True, values like annotated_tag_message were interpolated into shell command strings, allowing arbitrary command execution. With shell=False + list args, each value is a literal argv entry -- shell metacharacters (&&, ;, |, backticks) have no special meaning.

Open Graph Description: Description Fix command injection vulnerability (CWE-78) where shell=True in cmd.run() allowed arbitrary command execution via user-controlled values interpolated into git commands (e.g., annotated...

X Description: Description Fix command injection vulnerability (CWE-78) where shell=True in cmd.run() allowed arbitrary command execution via user-controlled values interpolated into git commands (e.g., annotated...

Opengraph URL: https://github.com/commitizen-tools/commitizen/pull/1941

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:0621a181-03a4-8cf4-d68d-fed166dcd178
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idEDC2:38A7FD:1506ECF:1D4CF1E:6A4DF126
html-safe-nonceab223a6e5f920c95f8bea085b407c99bab770f6decb6a890bbb7aee81b96bbde
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFREMyOjM4QTdGRDoxNTA2RUNGOjFENENGMUU6NkE0REYxMjYiLCJ2aXNpdG9yX2lkIjoiMTk2MTE1NTkxNTY3NjM0NzI2IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac7ddcf2e4c253fb8a525d04587adb703e425d154fc7f826f88c57b46e33dfcbb1
hovercard-subject-tagpull_request:3619405962
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/commitizen-tools/commitizen/pull/1941/files
twitter:imagehttps://avatars.githubusercontent.com/u/26526132?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/26526132?s=400&v=4
og:image:altDescription Fix command injection vulnerability (CWE-78) where shell=True in cmd.run() allowed arbitrary command execution via user-controlled values interpolated into git commands (e.g., annotated...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None5818716c93c6a2925b815402541a32814e43a7b1261c322b0c2df75224289566
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/commitizen-tools/commitizen git https://github.com/commitizen-tools/commitizen.git
octolytics-dimension-user_id62252524
octolytics-dimension-user_logincommitizen-tools
octolytics-dimension-repository_id106127589
octolytics-dimension-repository_nwocommitizen-tools/commitizen
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id106127589
octolytics-dimension-repository_network_root_nwocommitizen-tools/commitizen
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasef4bb89367ca678f057d79b1abc45d6675b1bd5b2
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/commitizen-tools/commitizen/pull/1941/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fcommitizen-tools%2Fcommitizen%2Fpull%2F1941%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fcommitizen-tools%2Fcommitizen%2Fpull%2F1941%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=commitizen-tools%2Fcommitizen
Reloadhttps://github.com/commitizen-tools/commitizen/pull/1941/files
Reloadhttps://github.com/commitizen-tools/commitizen/pull/1941/files
Reloadhttps://github.com/commitizen-tools/commitizen/pull/1941/files
Please reload this pagehttps://github.com/commitizen-tools/commitizen/pull/1941/files
commitizen-tools https://github.com/commitizen-tools
commitizenhttps://github.com/commitizen-tools/commitizen
Please reload this pagehttps://github.com/commitizen-tools/commitizen/pull/1941/files
Notifications https://github.com/login?return_to=%2Fcommitizen-tools%2Fcommitizen
Fork 343 https://github.com/login?return_to=%2Fcommitizen-tools%2Fcommitizen
Star 3.5k https://github.com/login?return_to=%2Fcommitizen-tools%2Fcommitizen
Code https://github.com/commitizen-tools/commitizen
Issues 116 https://github.com/commitizen-tools/commitizen/issues
Pull requests 45 https://github.com/commitizen-tools/commitizen/pulls
Discussions https://github.com/commitizen-tools/commitizen/discussions
Actions https://github.com/commitizen-tools/commitizen/actions
Projects https://github.com/commitizen-tools/commitizen/projects
Security and quality 0 https://github.com/commitizen-tools/commitizen/security
Insights https://github.com/commitizen-tools/commitizen/pulse
Code https://github.com/commitizen-tools/commitizen
Issues https://github.com/commitizen-tools/commitizen/issues
Pull requests https://github.com/commitizen-tools/commitizen/pulls
Discussions https://github.com/commitizen-tools/commitizen/discussions
Actions https://github.com/commitizen-tools/commitizen/actions
Projects https://github.com/commitizen-tools/commitizen/projects
Security and quality https://github.com/commitizen-tools/commitizen/security
Insights https://github.com/commitizen-tools/commitizen/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fcommitizen-tools%2Fcommitizen%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fcommitizen-tools%2Fcommitizen%2Fissues%2Fnew%2Fchoose
bearomorphismhttps://github.com/bearomorphism
masterhttps://github.com/commitizen-tools/commitizen/tree/master
fix/command-injection-shell-truehttps://github.com/commitizen-tools/commitizen/tree/fix/command-injection-shell-true
Conversation 8 https://github.com/commitizen-tools/commitizen/pull/1941
Commits 1 https://github.com/commitizen-tools/commitizen/pull/1941/commits
Checks 20 https://github.com/commitizen-tools/commitizen/pull/1941/checks
Files changed https://github.com/commitizen-tools/commitizen/pull/1941/files
Please reload this pagehttps://github.com/commitizen-tools/commitizen/pull/1941/files
fix(security): prevent command injection via shell=True (CWE-78) https://github.com/commitizen-tools/commitizen/pull/1941/files#top
Show all changes 1 commit https://github.com/commitizen-tools/commitizen/pull/1941/files
90b055b fix(security): prevent command injection via shell=True (CWE-78) bearomorphism May 3, 2026 https://github.com/commitizen-tools/commitizen/pull/1941/commits/90b055bbacfdcf9f89fd46ee89cfc023f6304df2
Clear filters https://github.com/commitizen-tools/commitizen/pull/1941/files
Please reload this pagehttps://github.com/commitizen-tools/commitizen/pull/1941/files
Please reload this pagehttps://github.com/commitizen-tools/commitizen/pull/1941/files
cli.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-6a6eecba6ea4aab85dcb0372fe57ce7306496e5a47186850be245bd732e8894e
cmd.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-81d23db4388c47363cf7ca81a0de90a1464a71d9a581c2060431b9ae41a5e8c8
bump.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-920733205b591ccb6aded23a60aba1c20600036d38b5c224e27da47cf09ffb60
changelog.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-c6c18b0eef4f3598794a5fa7177ac53dd0cd8eba8f29ed7be7319c6d431f21c1
commit.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-b682eb395fc382939bf1e227cb02ffd1a9335e1ee404b17702afaed226535c74
init.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-43bdf96da59e2edd79c3797ccaf86dda6495266c02768cb045502851ebb047e8
git.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-2c36ae6439ace4898e030adb6f7a861fd8e5ae0002ca472cc97e627ea20b3d96
hooks.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-eb066b3355dd121ab2ba85423f286322c44c080fd99b8582427fd9ed589ad217
test_bump_command.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-8b7a896f7aaf12467a53ab731ce9f5e167dc3afe6e88e06e7700f1a7e9e92831
test_commit_command.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-5bdfd11ecf3f34f6417cd6fc41228373fe0267ebe044bd202b061d111a6f980f
conftest.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-e52e4ddd58b7ef887ab03c04116e676f6280b824ab7469d5d3080e5cba4f2128
test_bump_create_commit_message.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-ca76b19bd0de28f831d3088fa6219eacc268e4e3c20ec7ed57469ed357399180
test_bump_hooks.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-e139d43f7347bea98894a6ad6cb4b65ee2f5490fb42f4395faed7dc3311db480
test_cmd.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-60497cc703a3a9baddaf30a3384a7774b89bc52007e28c34828758f055fcd72c
test_conf.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-6468e768366adbe7dd3205f161126966a694d5ddc2aa94a1e50a6d4da339139f
test_git.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-525635b43f5ec42f8b19fa010a1681f61b7832c76bccde68dc8e04c9f3c8de9b
utils.py https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-9e08e8c7769db7b58089fd7659d75ca96df40bb7b5d50299d3a30abd54da9ad6
commitizen/cli.pyhttps://github.com/commitizen-tools/commitizen/pull/1941/files#diff-6a6eecba6ea4aab85dcb0372fe57ce7306496e5a47186850be245bd732e8894e
View file https://github.com/commitizen-tools/commitizen/blob/90b055bbacfdcf9f89fd46ee89cfc023f6304df2/commitizen/cli.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/commitizen-tools/commitizen/pull/1941/{{ revealButtonHref }}
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-6a6eecba6ea4aab85dcb0372fe57ce7306496e5a47186850be245bd732e8894e
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-6a6eecba6ea4aab85dcb0372fe57ce7306496e5a47186850be245bd732e8894e
commitizen/cmd.pyhttps://github.com/commitizen-tools/commitizen/pull/1941/files#diff-81d23db4388c47363cf7ca81a0de90a1464a71d9a581c2060431b9ae41a5e8c8
View file https://github.com/commitizen-tools/commitizen/blob/90b055bbacfdcf9f89fd46ee89cfc023f6304df2/commitizen/cmd.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/commitizen-tools/commitizen/pull/1941/{{ revealButtonHref }}
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-81d23db4388c47363cf7ca81a0de90a1464a71d9a581c2060431b9ae41a5e8c8
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-81d23db4388c47363cf7ca81a0de90a1464a71d9a581c2060431b9ae41a5e8c8
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-81d23db4388c47363cf7ca81a0de90a1464a71d9a581c2060431b9ae41a5e8c8
Please reload this pagehttps://github.com/commitizen-tools/commitizen/pull/1941/files
commitizen/commands/bump.pyhttps://github.com/commitizen-tools/commitizen/pull/1941/files#diff-920733205b591ccb6aded23a60aba1c20600036d38b5c224e27da47cf09ffb60
View file https://github.com/commitizen-tools/commitizen/blob/90b055bbacfdcf9f89fd46ee89cfc023f6304df2/commitizen/commands/bump.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/commitizen-tools/commitizen/pull/1941/{{ revealButtonHref }}
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-920733205b591ccb6aded23a60aba1c20600036d38b5c224e27da47cf09ffb60
commitizen/commands/changelog.pyhttps://github.com/commitizen-tools/commitizen/pull/1941/files#diff-c6c18b0eef4f3598794a5fa7177ac53dd0cd8eba8f29ed7be7319c6d431f21c1
View file https://github.com/commitizen-tools/commitizen/blob/90b055bbacfdcf9f89fd46ee89cfc023f6304df2/commitizen/commands/changelog.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/commitizen-tools/commitizen/pull/1941/{{ revealButtonHref }}
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-c6c18b0eef4f3598794a5fa7177ac53dd0cd8eba8f29ed7be7319c6d431f21c1
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-c6c18b0eef4f3598794a5fa7177ac53dd0cd8eba8f29ed7be7319c6d431f21c1
commitizen/commands/commit.pyhttps://github.com/commitizen-tools/commitizen/pull/1941/files#diff-b682eb395fc382939bf1e227cb02ffd1a9335e1ee404b17702afaed226535c74
View file https://github.com/commitizen-tools/commitizen/blob/90b055bbacfdcf9f89fd46ee89cfc023f6304df2/commitizen/commands/commit.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/commitizen-tools/commitizen/pull/1941/{{ revealButtonHref }}
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-b682eb395fc382939bf1e227cb02ffd1a9335e1ee404b17702afaed226535c74
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-b682eb395fc382939bf1e227cb02ffd1a9335e1ee404b17702afaed226535c74
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-b682eb395fc382939bf1e227cb02ffd1a9335e1ee404b17702afaed226535c74
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-b682eb395fc382939bf1e227cb02ffd1a9335e1ee404b17702afaed226535c74
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-b682eb395fc382939bf1e227cb02ffd1a9335e1ee404b17702afaed226535c74
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-b682eb395fc382939bf1e227cb02ffd1a9335e1ee404b17702afaed226535c74
commitizen/commands/init.pyhttps://github.com/commitizen-tools/commitizen/pull/1941/files#diff-43bdf96da59e2edd79c3797ccaf86dda6495266c02768cb045502851ebb047e8
View file https://github.com/commitizen-tools/commitizen/blob/90b055bbacfdcf9f89fd46ee89cfc023f6304df2/commitizen/commands/init.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/commitizen-tools/commitizen/pull/1941/{{ revealButtonHref }}
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-43bdf96da59e2edd79c3797ccaf86dda6495266c02768cb045502851ebb047e8
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-43bdf96da59e2edd79c3797ccaf86dda6495266c02768cb045502851ebb047e8
commitizen/git.pyhttps://github.com/commitizen-tools/commitizen/pull/1941/files#diff-2c36ae6439ace4898e030adb6f7a861fd8e5ae0002ca472cc97e627ea20b3d96
View file https://github.com/commitizen-tools/commitizen/blob/90b055bbacfdcf9f89fd46ee89cfc023f6304df2/commitizen/git.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/commitizen-tools/commitizen/pull/1941/{{ revealButtonHref }}
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-2c36ae6439ace4898e030adb6f7a861fd8e5ae0002ca472cc97e627ea20b3d96
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-2c36ae6439ace4898e030adb6f7a861fd8e5ae0002ca472cc97e627ea20b3d96
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-2c36ae6439ace4898e030adb6f7a861fd8e5ae0002ca472cc97e627ea20b3d96
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-2c36ae6439ace4898e030adb6f7a861fd8e5ae0002ca472cc97e627ea20b3d96
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-2c36ae6439ace4898e030adb6f7a861fd8e5ae0002ca472cc97e627ea20b3d96
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-2c36ae6439ace4898e030adb6f7a861fd8e5ae0002ca472cc97e627ea20b3d96
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-2c36ae6439ace4898e030adb6f7a861fd8e5ae0002ca472cc97e627ea20b3d96
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-2c36ae6439ace4898e030adb6f7a861fd8e5ae0002ca472cc97e627ea20b3d96
commitizen/hooks.pyhttps://github.com/commitizen-tools/commitizen/pull/1941/files#diff-eb066b3355dd121ab2ba85423f286322c44c080fd99b8582427fd9ed589ad217
View file https://github.com/commitizen-tools/commitizen/blob/90b055bbacfdcf9f89fd46ee89cfc023f6304df2/commitizen/hooks.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/commitizen-tools/commitizen/pull/1941/{{ revealButtonHref }}
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-eb066b3355dd121ab2ba85423f286322c44c080fd99b8582427fd9ed589ad217
https://github.com/commitizen-tools/commitizen/pull/1941/files#diff-eb066b3355dd121ab2ba85423f286322c44c080fd99b8582427fd9ed589ad217
Please reload this pagehttps://github.com/commitizen-tools/commitizen/pull/1941/files
Please reload this pagehttps://github.com/commitizen-tools/commitizen/pull/1941/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.