Last active
April 4, 2022 06:29
-
-
Save yzAlvin/48d2079fa7dfcc031a6a86c7a8d0cdb0 to your computer and use it in GitHub Desktop.
Cherry-pick dependabot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git branch -r | grep 'origin/dependabot/' | while read -r branch ; do git cherry-pick $(git rev-parse $branch) ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cherry picks all dependabot branches in a repo into the current branch, useful to quickly bump package versions