{"id":16070732,"url":"https://github.com/cjpatoilo/gitfit","last_synced_at":"2025-03-18T05:31:08.379Z","repository":{"id":81608507,"uuid":"133128599","full_name":"cjpatoilo/gitfit","owner":"cjpatoilo","description":"Git extensions to provide high-level repository operations for Git Feature Branch Workflow.","archived":false,"fork":false,"pushed_at":"2023-02-27T01:29:03.000Z","size":325,"stargazers_count":17,"open_issues_count":1,"forks_count":3,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-28T07:32:57.023Z","etag":null,"topics":["git","git-feature-branch","git-workflow"],"latest_commit_sha":null,"homepage":"https://cjpatoilo.com/gitfit","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/cjpatoilo.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":".github/contributing.md","funding":".github/funding.yml","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},"funding":{"open_collective":"cjpatoilo","patreon":"cjpatoilo"}},"created_at":"2018-05-12T08:37:59.000Z","updated_at":"2023-09-01T12:44:53.000Z","dependencies_parsed_at":"2023-06-16T21:15:25.975Z","dependency_job_id":null,"html_url":"https://github.com/cjpatoilo/gitfit","commit_stats":{"total_commits":60,"total_committers":2,"mean_commits":30.0,"dds":"0.033333333333333326","last_synced_commit":"600ee47fef2b150beba696e4841344d8a1620c34"},"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cjpatoilo%2Fgitfit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cjpatoilo%2Fgitfit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cjpatoilo%2Fgitfit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cjpatoilo%2Fgitfit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cjpatoilo","download_url":"https://codeload.github.com/cjpatoilo/gitfit/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243903163,"owners_count":20366433,"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":["git","git-feature-branch","git-workflow"],"created_at":"2024-10-09T07:06:52.478Z","updated_at":"2025-03-18T05:31:08.372Z","avatar_url":"https://github.com/cjpatoilo.png","language":"Shell","readme":"\u003ca href=\"https://github.com/cjpatoilo/gitfit\"\u003e\u003cimg width=\"100%\" src=\"https://cjpatoilo.com/gitfit/artwork.png\" alt=\"Gitfit - Git Feature Branch Tooling.\"\u003e\u003c/a\u003e\n\n\u003e Git Feature Branch Tooling.\n\n[![Travis Status](https://travis-ci.org/cjpatoilo/gitfit.svg?branch=master)](https://travis-ci.org/cjpatoilo/gitfit?branch=master)\n[![AppVeyor Status](https://ci.appveyor.com/api/projects/status/2dv8bbpsk492edfe?svg=true)](https://ci.appveyor.com/project/cjpatoilo/gitfit)\n[![Codacy Status](https://img.shields.io/codacy/grade/52941e3f3d6c4eecabb3759e63f4bf58/master.svg)](https://www.codacy.com/app/cjpatoilo/gitfit/dashboard)\n[![Dependencies Status](https://david-dm.org/cjpatoilo/gitfit/status.svg)](https://david-dm.org/cjpatoilo/gitfit)\n[![Version Status](https://badge.fury.io/js/gitfit.svg)](https://www.npmjs.com/package/gitfit)\n[![Download Status](https://img.shields.io/npm/dt/gitfit.svg)](https://www.npmjs.com/package/gitfit)\n[![Gitter Chat](https://img.shields.io/badge/gitter-join_the_chat-4cc61e.svg)](https://gitter.im/cjpatoilo/gitfit)\n\n## Why it's awesome\n\nThe core idea behind the Feature Branch Workflow is that all feature development should take place in a dedicated branch instead of the master branch. This encapsulation makes it easy for multiple developers to work on a particular feature without disturbing the main codebase. It also means the master branch will never contain broken code, which is a huge advantage for continuous integration environments.\n\n-- Inspired by [Git Feature Branch Workflow](https://www.atlassian.com/git/tutorials/comparing-workflows/feature-branch-workflow) (@atlassian).\n\n## Getting Started\n\n**Install with Homebrew**\n\n```sh\n$ brew install gitfit\n```\n\n**Install with npm**\n\n```sh\n$ npm i -g gitfit\n```\n\n**Install with Yarn**\n\n```sh\n$ yarn global add gitfit\n```\n\n**Run with npx (without installing)**\n\n```sh\n$ npx gitfit \u003ccommand\u003e [\u003coptions\u003e]\n```\n\n## Usage\n\n```\nUsage:\n\n\t$ gitfit \u003ccommand\u003e [\u003coptions\u003e]\n\nOptions:\n\n\t-h, --help              Display help information\n\t-v, --version           Output version\n\tinit                    Initializy repository\n\tstart                   Start new feature branch\n\tfinish                  Finish feature branch\n\tpublish                 Publish master branch or feature branch\n\nExamples:\n\n\t$ gitfit init\n\t$ gitfit start \u003cfeature-name\u003e\n\t$ gitfit finish \u003cnew-tag\u003e [\u003cmain_branch\u003e] # default: master\n\t$ gitfit publish [\u003cremote-branch\u003e]  # default: current branch\n```\n\n## Contributing\n\nWant to contribute? Follow these [recommendations](https://github.com/cjpatoilo/gitfit/contribute).\n\n## License\n\nDesigned with ♥ by [CJ Patoilo](https://twitter.com/cjpatoilo). Licensed under the [MIT License](https://cjpatoilo.com/license).\n","funding_links":["https://opencollective.com/cjpatoilo","https://patreon.com/cjpatoilo"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcjpatoilo%2Fgitfit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcjpatoilo%2Fgitfit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcjpatoilo%2Fgitfit/lists"}