{"id":19248009,"url":"https://github.com/tsedio/gflow","last_synced_at":"2025-04-21T11:33:54.881Z","repository":{"id":44121781,"uuid":"110015460","full_name":"tsedio/gflow","owner":"tsedio","description":"🛠️ A better `git flow`","archived":false,"fork":false,"pushed_at":"2023-10-19T11:32:39.000Z","size":2988,"stargazers_count":9,"open_issues_count":21,"forks_count":5,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-04-01T12:54:38.445Z","etag":null,"topics":["command-line","flow","git","hacktoberfest","nodejs","rebase","tool"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/tsedio.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2017-11-08T18:37:49.000Z","updated_at":"2023-03-27T23:31:24.000Z","dependencies_parsed_at":"2023-01-25T19:31:27.304Z","dependency_job_id":"f232b271-8c96-42dd-a148-deacff714a9e","html_url":"https://github.com/tsedio/gflow","commit_stats":null,"previous_names":["romakita/gflow"],"tags_count":73,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsedio%2Fgflow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsedio%2Fgflow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsedio%2Fgflow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsedio%2Fgflow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tsedio","download_url":"https://codeload.github.com/tsedio/gflow/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249210507,"owners_count":21230737,"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":["command-line","flow","git","hacktoberfest","nodejs","rebase","tool"],"created_at":"2024-11-09T18:06:07.741Z","updated_at":"2025-04-21T11:33:54.553Z","avatar_url":"https://github.com/tsedio.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GFLOW\n\nA command line inspired from the Git Flow process and adapted to use rebase command exlusively.\nIt always keep your branches up to date.\n\n![example](example.gif)\n\n## Feature\n\n- Define a production and development branches,\n- See all branches status,\n- Rebase and run tasks (Install and test) before pushing a branch,\n- Always create a branch from production,\n\n\n## Install\n\n```bash\nnpm install -g gflow\n```\n\n## Usage \n\n```bash\n  Usage: gflow [options] [command]\n\n\n  Options:\n\n    -V, --version  output the version number\n    -h, --help     output usage information\n\n\n  Commands:\n\n    branches    List all branches status\n    finish      Merge the current branch on the referenced branch (production or ancestor) and delete it\n    merge       Merge the current branch on the referenced branch (production or ancestor) without deleting branch\n    release     Create the release tag on the production branch. Synchronize the dev branch and production branch (for CI like travis)\n    init        Create a new git flow project\n    new         Create a new branch from the latest commit of production branch\n    push        Rebase the current branch from production and push all commit (run test before)\n    rebase      Rebase the current branch from production\n    fetch       Download objects and refs from another repository (--all and --prune)\n    sync        Synchronize dev branch and production\n    config      Operation about configuration\n    help [cmd]  display help for [cmd]\n```\n\n### Getting started\n\nYou can initialize a new GFlow project with this command:\n\n```bash\ngflow init\n```\n\nThis command will configure the production and development branches.\n\n\n### Configuration options\n\nGflow init command generate a `.glfowrc` config file with some options look like:\n\n```jsonc\n{\n  \"flow\": \"gflow\", // gflow || gitflow\n  \"production\": \"production\",\n  \"develop\": \"master\",\n  \"charBranchNameSeparator\": \"_\",\n  \"remote\": \"origin\",\n  \"ignores\": [],\n  \"syncAfterFinish\": true,\n  \"postFinish\": \"\",\n  \"skipTest\": true,\n  \"branchTypes\": {\n    \"feat\": \"feat\",\n    \"fix\": \"fix\",\n    \"chore\": \"chore\",\n    \"docs\": \"docs\"\n  }\n}\n```\n\nKey | Description\n---|---\n`flow` | Change flow used by GFlow. `gflow` use rebase command  and `gitflow` use merge command.\n`production` | Name of the production branch or the branch use as reference to rebase a feature branch.\n`develop` | Name of the development branch (or the release candidate branch).\n`charBranchNameSeparator` | Char separator of the a branch between branchName and task type (feat, fix, chore, etc...). Example: if char = \"/\" `feat/branch_name`.\n`remote` | Alias name of the remote repository (origin).\n`ignores` | Disable rebasing for the given branch list when the `rebase-all` command is used.\n`syncAfterFinish` | Perform synchronization between `production` and `develop` branches.\n`postFinish` | Run command after the `finish` command.\n`skipTest` | Disable unit test step.\n`branchTypes` | Configure the branch types for the command `gflow new`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsedio%2Fgflow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftsedio%2Fgflow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsedio%2Fgflow/lists"}