https://github.com/danielbayerlein/git-pick
🍒 git cherry-pick <commit> to multiple branches
https://github.com/danielbayerlein/git-pick
cherry-pick git
Last synced: 6 months ago
JSON representation
🍒 git cherry-pick <commit> to multiple branches
- Host: GitHub
- URL: https://github.com/danielbayerlein/git-pick
- Owner: danielbayerlein
- License: mit
- Created: 2016-11-14T10:08:29.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-04-17T04:58:40.000Z (over 2 years ago)
- Last Synced: 2025-03-24T18:52:26.772Z (7 months ago)
- Topics: cherry-pick, git
- Language: JavaScript
- Homepage:
- Size: 1.66 MB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# git-pick
[](https://badge.fury.io/js/%40danielbayerlein%2Fgit-pick)
[](https://github.com/danielbayerlein/git-pick/actions)
[](https://codecov.io/gh/danielbayerlein/git-pick)
[](https://standardjs.com)
[](https://dependabot.com)`git cherry-pick ` to multiple branches.
With `git-pick` you can cherry-pick a commit to multiple branches.## Installation
```bash
# npm
npm install @danielbayerlein/git-pick --global# Yarn
yarn global add @danielbayerlein/git-pick
```## Usage
```bash
git-pick [options]
```### Options
```
-b, --new-branch Creates a new feature branch for each given branch
-p, --pull Fetches the changes from the remote branch, before cherry-pick the commit
```## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new [Pull Request](../../pull/new/master)## Copyright
Copyright (c) 2016-present Daniel Bayerlein. See [LICENSE](./LICENSE.md) for details.