{"id":16486001,"url":"https://github.com/roziscoding/git-goodies","last_synced_at":"2025-07-04T11:05:04.280Z","repository":{"id":105783717,"uuid":"164437681","full_name":"roziscoding/git-goodies","owner":"roziscoding","description":"Set of git custom commands to make life easier","archived":false,"fork":false,"pushed_at":"2022-09-02T13:31:54.000Z","size":4,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-01T22:44:58.864Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/roziscoding.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2019-01-07T13:35:48.000Z","updated_at":"2022-09-02T13:28:07.000Z","dependencies_parsed_at":"2023-06-13T21:15:41.126Z","dependency_job_id":null,"html_url":"https://github.com/roziscoding/git-goodies","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/roziscoding/git-goodies","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roziscoding%2Fgit-goodies","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roziscoding%2Fgit-goodies/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roziscoding%2Fgit-goodies/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roziscoding%2Fgit-goodies/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/roziscoding","download_url":"https://codeload.github.com/roziscoding/git-goodies/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roziscoding%2Fgit-goodies/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263499191,"owners_count":23476020,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-10-11T13:28:03.371Z","updated_at":"2025-07-04T11:05:04.222Z","avatar_url":"https://github.com/roziscoding.png","language":"Shell","readme":"# git-goodies\nSet of git custom commands to make life easier\n\n- [git-goodies](#git-goodies)\n  - [Installing](#installing)\n  - [Commands](#commands)\n    - [git bump](#git-bump)\n    - [git bugfix](#git-bugfix)\n    - [git feature](#git-feature)\n    - [git hotfix](#git-hotfix)\n    - [git pop](#git-pop)\n    - [git publish](#git-publish)\n\n## Installing\n1. Clone this:\n   ```sh\n   git clone git@github.com:rjmunhoz/git-goodies.git\n   ```\n2. Enter the newly created folder\n   ```sh\n   cd git-goodies\n   ```\n3. Give the execute permissions to the all of the -git files\n   ```sh\n   chmod +x git-*\n   ```\n4. Add the full path of the git-goodies folder to your PATH environment variable\n\n## Commands\n\n### git bump\n\n**Syntax**\n```sh\ngit bump version_type [message]\n```\n\n**Params**\n\n- vesrion_type:\n  - Description: version type to be used with `npm version version_type`\n  - Required: yes\n- message:\n  - Description: commit message to be used along with the new version in the format of `vx.x.x - message`\n  - Required: no\n  - Default: no message. Commit will only contain the version number\n\n**Usage**\n\nThis calls npm with the passed version type and commits it with the optional message and the new version.\n\n### git bugfix\n\n**Syntax**\n```sh\ngit bugfix bugfix_name\n```\n\n**Params**\n\n- bugfix_name\n  - Description: The git-compliant name for the new branch\n  - Required: yes\n\n**Usage**\n\nThis command performs a series of actions to ensure it creates an updated bugfix branch. These are the steps:\n- Checks `release` out and pulls its changes\n- Checks `master` out and pulls its changes\n- Checks `release` out and merges `master` into `release`\n- Pushes `release`\n- Creates a new branch called `bugfix/bugfix_name`\n\n### git feature\n\n\u003e This follows the exact same steps, syntax and usage as the [git bugfix](#git-bugfix) command, except everything is called `feature`, and not `bugfix`\n\n### git hotfix\n\n**Syntax**\n```sh\ngit hotfix hotfix_name\n```\n\n**Params**\n\n- hotfix_name\n  - Description: The git-compliant name for the hotfix branch\n  - Required: yes\n\n**Usage**\n\nThis command performs a series of actions to ensure it creates an updated bugfix branch. These are the steps:\n- Checks `master` out and pulls its changes\n- Creates a new branch called `hotfix/hotfix_name`\n\n### git pop\n\n**Syntax**\n```sh\ngit pop\n```\n\n**Params**\n\u003e No params\n\n**Usage**\n\nThis command will call `git stash pop` and save you a few keystrokes :)\n\n### git publish\n\n**Syntax**\n\n`git publish`\n\n**Params**\n\n\u003e No params\n\n**Usage**\n\nThis will call `git push -u origin current_branch_name`\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froziscoding%2Fgit-goodies","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froziscoding%2Fgit-goodies","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froziscoding%2Fgit-goodies/lists"}