{"id":17267375,"url":"https://github.com/imcvampire/git-semantic-commit","last_synced_at":"2026-02-27T08:35:36.139Z","repository":{"id":12412432,"uuid":"71753437","full_name":"imcvampire/git-semantic-commit","owner":"imcvampire","description":"A list of simple bash script for faster git commit","archived":false,"fork":false,"pushed_at":"2024-08-14T21:34:34.000Z","size":29,"stargazers_count":15,"open_issues_count":2,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-14T08:41:18.085Z","etag":null,"topics":["hacktoberfest"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/imcvampire.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2016-10-24T05:03:33.000Z","updated_at":"2024-04-25T15:29:04.000Z","dependencies_parsed_at":"2025-04-14T08:37:04.474Z","dependency_job_id":"6677f0a2-db84-4e12-a5dc-cf0d59d4641f","html_url":"https://github.com/imcvampire/git-semantic-commit","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/imcvampire/git-semantic-commit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imcvampire%2Fgit-semantic-commit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imcvampire%2Fgit-semantic-commit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imcvampire%2Fgit-semantic-commit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imcvampire%2Fgit-semantic-commit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/imcvampire","download_url":"https://codeload.github.com/imcvampire/git-semantic-commit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imcvampire%2Fgit-semantic-commit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29888189,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T08:34:21.514Z","status":"ssl_error","status_checked_at":"2026-02-27T08:32:38.035Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest"],"created_at":"2024-10-15T08:10:29.131Z","updated_at":"2026-02-27T08:35:36.119Z","avatar_url":"https://github.com/imcvampire.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Git Semantic Commit Messages\n\nThis project is based on [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). See their commit history for examples of properly formatted commit messages.\n\n## Commands\n\n| Command                           | Returns                         |\n| ---------------------             | ------------------------------- |\n| `git feat \u003cmessage\u003e`              | feat: message                   |\n| `git feat \u003cscope\u003e \u003cmessage\u003e`      | feat(scope): message            |\n| `git docs \u003cmessage\u003e`              | docs: message                   |\n| `git docs \u003cscope\u003e \u003cmessage\u003e`      | docs(scope): message            |\n| `git chore \u003cmessage\u003e`             | chore: message                  |\n| `git chore \u003cscope\u003e \u003cmessage\u003e`     | chore(scope): message           |\n| `git fix \u003cmessage\u003e`               | fix: message                    |\n| `git fix \u003cscope\u003e \u003cmessage\u003e`       | fix(scope): message             |\n| `git refactor \u003cmessage\u003e`          | refactor: message               |\n| `git refactor \u003cscope\u003e \u003cmessage\u003e`  | refactor(scope): message        |\n| `git style \u003cmessage\u003e`             | style: message                  |\n| `git style \u003cscope\u003e \u003cmessage\u003e`     | style(scope): message           |\n| `git test \u003cmessage\u003e`              | test: message                   |\n| `git test \u003cscope\u003e \u003cmessage\u003e`      | test(scope): message            |\n| `git build \u003cmessage\u003e`             | build: message                  |\n| `git build \u003cscope\u003e \u003cmessage\u003e`     | build(scope): message           |\n| `git perf \u003cmessage\u003e`             | perf: message                  |\n| `git perf \u003cscope\u003e \u003cmessage\u003e`     | perf(scope): message           |\n\n\n## Install\n\nFirst, clone this repo. Preferably in your $HOME directory:\n\n```sh\ngit clone git@github.com:imcvampire/git-semantic-commit.git ~/.git-semantic-commits\n```\n\nThen add the folder to your `$PATH` in `~/.bashrc` or `~/.zshrc`, respectively:\n\n```sh\nexport PATH=$PATH:$HOME/.git-semantic-commits:$PATH\n```\n\nSave and source the changes:\n\n```sh\nsource ~/.bashrc  # if using Bash\nsource ~/.zshrc # if using Zsh\n``````\n\nThat's it! Enjoy your workflow and consistency improvements 🎉\n\n---\n\nThis repo is a fork of the [original repo](https://github.com/russiann/git-semantic-commits).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimcvampire%2Fgit-semantic-commit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimcvampire%2Fgit-semantic-commit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimcvampire%2Fgit-semantic-commit/lists"}