{"id":19230297,"url":"https://github.com/mrloop/netlify-git-branch","last_synced_at":"2025-04-21T03:30:51.067Z","repository":{"id":38085343,"uuid":"426371524","full_name":"mrloop/netlify-git-branch","owner":"mrloop","description":"Feature branch staging environments with netlify and git","archived":false,"fork":false,"pushed_at":"2024-10-23T15:23:20.000Z","size":1096,"stargazers_count":0,"open_issues_count":12,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-24T21:11:20.332Z","etag":null,"topics":["continuous-deployment","git","javascript","netlify"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/mrloop.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2021-11-09T20:10:58.000Z","updated_at":"2024-10-23T08:35:09.000Z","dependencies_parsed_at":"2024-05-14T09:29:28.979Z","dependency_job_id":"3d32aa0b-fa24-4c67-ae91-2db367b8e198","html_url":"https://github.com/mrloop/netlify-git-branch","commit_stats":null,"previous_names":["mrloop/netlify-git-branch-deploy"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrloop%2Fnetlify-git-branch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrloop%2Fnetlify-git-branch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrloop%2Fnetlify-git-branch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrloop%2Fnetlify-git-branch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrloop","download_url":"https://codeload.github.com/mrloop/netlify-git-branch/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223848258,"owners_count":17213597,"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":["continuous-deployment","git","javascript","netlify"],"created_at":"2024-11-09T15:37:41.562Z","updated_at":"2024-11-09T15:37:42.375Z","avatar_url":"https://github.com/mrloop.png","language":"TypeScript","readme":"netlify-git-branch\n==================\n\n[![CI](https://github.com/mrloop/netlify-git-branch/actions/workflows/ci.yml/badge.svg)](https://github.com/mrloop/netlify-git-branch/actions/workflows/ci.yml)\n[![Latest NPM release][npm-badge]][npm-badge-url]\n\n[npm-badge]: https://img.shields.io/npm/v/netlify-git-branch.svg\n[npm-badge-url]: https://www.npmjs.com/package/netlify-git-branch\n\nFeature branch staging environments with netlify and git.\n\nEasily deploy feature branches to indiviudal subdomains on netlify.\n\n\u003c!-- toc --\u003e\n* [Usage](#usage)\n* [Commands](#commands)\n\u003c!-- tocstop --\u003e\n# Usage\n\u003c!-- usage --\u003e\n```sh-session\n$ npm install -g netlify-git-branch\n$ netlify-git-branch COMMAND\nrunning command...\n$ netlify-git-branch (--version)\nnetlify-git-branch/2.0.0 linux-x64 node-v16.13.0\n$ netlify-git-branch --help [COMMAND]\nUSAGE\n  $ netlify-git-branch COMMAND\n...\n```\n\u003c!-- usagestop --\u003e\n# Commands\n\u003c!-- commands --\u003e\n* [`netlify-git-branch delete NAME`](#netlify-git-branch-delete-name)\n* [`netlify-git-branch deploy NAME`](#netlify-git-branch-deploy-name)\n* [`netlify-git-branch help [COMMAND]`](#netlify-git-branch-help-command)\n\n## `netlify-git-branch delete NAME`\n\nDelete netlify staging subdomain for this branch\n\n```\nUSAGE\n  $ netlify-git-branch delete [NAME]\n\nARGUMENTS\n  NAME  Name is prefixed onto the git branch name. For Example on branch 'my-feature' and a name of 'my-site' the domain\n        will be 'https://my-site-my-feature.netlify.app'.\n\nDESCRIPTION\n  Delete netlify staging subdomain for this branch\n\nEXAMPLES\n  $ netlify-git-branch delete my-site\n```\n\n_See code: [src/commands/delete/index.ts](https://github.com/mrloop/netlify-git-branch/blob/v2.0.0/src/commands/delete/index.ts)_\n\n## `netlify-git-branch deploy NAME`\n\nDeploy branch to netlify staging subdomain\n\n```\nUSAGE\n  $ netlify-git-branch deploy [NAME] [--dir \u003cvalue\u003e] [--assert \u003cvalue\u003e]\n\nARGUMENTS\n  NAME  Name is prefixed onto the git branch name. For Example on branch 'my-feature' and a name of 'my-site' the domain\n        will be 'https://my-site-my-feature.netlify.app'.\n\nFLAGS\n  --assert=\u003cvalue\u003e  Check deployed site using CSS \u003cselector\u003e\n  --dir=\u003cvalue\u003e     [default: dist] Deploy site from \u003cdir\u003e\n\nDESCRIPTION\n  Deploy branch to netlify staging subdomain\n\nEXAMPLES\n  $ netlify-git-branch deploy my-site --dir dist\n```\n\n_See code: [src/commands/deploy/index.ts](https://github.com/mrloop/netlify-git-branch/blob/v2.0.0/src/commands/deploy/index.ts)_\n\n## `netlify-git-branch help [COMMAND]`\n\ndisplay help for netlify-git-branch\n\n```\nUSAGE\n  $ netlify-git-branch help [COMMAND] [--json] [--all]\n\nARGUMENTS\n  COMMAND  command to show help for\n\nFLAGS\n  --all   see all commands in CLI\n  --json  Format output as json.\n\nDESCRIPTION\n  display help for netlify-git-branch\n```\n\n_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v4.0.3/src/commands/help.ts)_\n\u003c!-- commandsstop --\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrloop%2Fnetlify-git-branch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrloop%2Fnetlify-git-branch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrloop%2Fnetlify-git-branch/lists"}