I'm not great a git management, so I'm unclear of best practices in this scenario.
- branch
mainhas dependency [email protected] - you create branch
shinywhich requires [email protected] - you change some code in
main, that should also be changed inshiny
I don't want to push the [email protected] from main to shiny. Do you just manually make the code change in shiny or is there a way to cleanly merge main into shiny? Or maybe the answer is create a feat branch off main, make your code changes, and then merge the feat branch into main and shiny.
Maybe I just answered my own question, while typing that out 😆 but just in case I'll go ahead and post.
This isn't some production app or anything. It's an example repo, so that's why I've been making changes directly to main.