{"id":16584095,"url":"https://github.com/headwindz/tedder","last_synced_at":"2026-04-21T14:03:59.585Z","repository":{"id":32834423,"uuid":"138852651","full_name":"headwindz/tedder","owner":"headwindz","description":"🛠️ A scrum git branch manager","archived":false,"fork":false,"pushed_at":"2024-09-04T15:32:41.000Z","size":564,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-28T01:23:28.875Z","etag":null,"topics":["git","scrum","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/headwindz.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}},"created_at":"2018-06-27T08:30:46.000Z","updated_at":"2024-09-04T15:32:45.000Z","dependencies_parsed_at":"2024-03-07T16:59:35.147Z","dependency_job_id":null,"html_url":"https://github.com/headwindz/tedder","commit_stats":null,"previous_names":["headwindz/tedder","n0rush/tedder"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/headwindz%2Ftedder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/headwindz%2Ftedder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/headwindz%2Ftedder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/headwindz%2Ftedder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/headwindz","download_url":"https://codeload.github.com/headwindz/tedder/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":236735078,"owners_count":19196360,"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","scrum","tool"],"created_at":"2024-10-11T22:43:55.242Z","updated_at":"2025-10-29T07:32:57.196Z","avatar_url":"https://github.com/headwindz.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Logo](https://pt-starimg.didistatic.com/static/starimg/img/WvVa5CjjR61603872342657.png)\n\n\u003e **Tedder - a scrum git branch manager**\n\n[![Code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)\n[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/headwindz/tedder/blob/master/LICENSE)\n[![npm](https://img.shields.io/badge/version-1.0.7-orange.svg)](https://www.npmjs.com/package/tedder)\n[![Downloads](https://img.shields.io/npm/dm/tedder.svg)](https://npmcharts.com/compare/tedder?minimal=true)\n\n## Why\n\n- Developers sometimes break the naming standard and create inconsistent branches.\n- Developers hang around asking whether a scrum branch has been created.\n\n# Getting started\n\n```\nnpm install tedder\n```\n\n_Note: You can install and run tedder both locally and globally._\n\n# Usage\n\n## Options\n\n### Base branch\n\nSpecify the base branch to branch off when creating the new scrum branch.\n\n|    Default    |  CLI Override  | CLI shortcut Override | Config Override |\n| :-----------: | :------------: | :------------------: | :-------------: |\n| origin/master | --base \\\u003cstr\\\u003e |      -b \\\u003cstr\\\u003e      |  base: \\\u003cstr\\\u003e  |\n\n### Git repo remote\n\nRemote name\n\n| Default |   CLI Override   | CLI shortcut Overide | Config Override |\n| :-----: | :--------------: | :------------------: | :-------------: |\n| origin  | --remote \\\u003cstr\\\u003e |      -r \\\u003cstr\\\u003e      | remote: \\\u003cstr\\\u003e |\n\n### Day\n\nSpecify which day of the week your scrum branch is targeting. The value should be one of: Mon, Tue, Wed, Thu, Fri, Sat, Sun\n\n| Default | CLI Override  | CLI shortcut Overide | Config Override |\n| :-----: | :-----------: | :------------------: | :-------------: |\n|   Mon   | --day \\\u003cstr\\\u003e |      -d \\\u003cstr\\\u003e      |  day: \\\u003cstr\\\u003e   |\n\n### Scrum round\n\nSpecify the scrum round which is used to calculate the date.\n\n| Default |  CLI Override  | CLI shortcut Overide | Config Override |\n| :-----: | :------------: | :------------------: | :-------------: |\n|    1    | --next \\\u003cnum\\\u003e |      -n \\\u003cnum\\\u003e      |  next: \\\u003cnum\\\u003e  |\n\n### tempalte\n\nSpecify the tempalte for computing branch name. **\\[\\]** is used as delimiter:\n\n- \\[yyyy\\]: get full year\n- \\[yy\\]: get year\n- \\[mm\\]: get month\n- \\[dd\\]: get day\n\nE.g. if your scum is targeted for 16th/Aug/2018 and your template is `feature/[yyyy][mm][dd]` then tedder will create the branch `feature/2018/08/16` fro you.\n\n|           Default            |    CLI Override    | CLI shortcut Override |  Config Override  |\n| :--------------------------: | :----------------: | :------------------: | :---------------: |\n| feature/\\[yyyy\\]\\[mm\\]\\[dd\\] | --template \\\u003cstr\\\u003e |      -t \\\u003cstr\\\u003e      | template: \\\u003cstr\\\u003e |\n\n### checkOnly\n\nWhether only check remote branch exists\n\n| Default | CLI Override | CLI shortcut Override | Config Override |\n| :-----: | :----------: | :------------------: | :-------------: |\n|  false  | --checkOnly  |          -c          | checkOnly: true |\n\n## With the CLI\n\n```\ntedder [options]\n```\n\n## With npm script\n\n```\n\"scripts\": {\n  \"scrum\": \"tedder\"\n}\n```\n\n## Configuration File\n\nTedder uses [cosmiconfig](https://github.com/davidtheclark/cosmiconfig) for configuration file support. This means you can configure tedder via:\n\n- A .tedderrc file, written in YAML or JSON, with optional extensions: .yaml/.yml/.json/.js.\n- A .tedderrc.toml file, written in TOML (the .toml extension is required).\n- A tedder.config.js file that exports an object.\n- A \"tedder\" key in your package.json file.\n\nThe configuration file will be resolved starting from the location of the file being formatted, and searching up the file tree until a config file is (or isn't) found.\n\nE.g. basic rc config:\n\n```\n{\n    \"day\": \"Thu\",\n    \"template\": \"feat/[yyyy][mm][dd]\"\n}\n```\n\n## Mix CLI and configuration file\n\nYou can mix the usage of cli and configuration file. The options from cli take precedence over those from configuration file.\n\n# Last but not least\n\nThere is a bonus which will trigger at a small chance while using the tool. Pls give me a shot if you're lucky :\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheadwindz%2Ftedder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fheadwindz%2Ftedder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheadwindz%2Ftedder/lists"}