6 ms·
Got it! If you click the repository name in the left sidebar, you should see a field for setup script.
by Charlieholtz 1y ago
Got it! If you click the repository name in the left sidebar, you should see a field for setup script.
- dgritsko 1y agoAh, excellent - appreciate the help! I'm already getting a ton of value out of this tool, thanks for sharing!
- Charlieholtz 1y agowooo that's awesome to hear! keep the feedback coming!
- dgritsko 1y agoFWIW, this is what I wound up with - keeps the original branch name but ensures that it's based on the latest from the "dev" branch: orig_branch=$(git branch --show-current) && git checkout dev && git pull && git branch -D "$orig_branch" && git checkout -b "$orig_branch"