This question is maybe answered, but I couldn't find it.
I have a branch where I am working on and I didn't finish my work on this branch. Now I need to use prebuilt tool that is on totally different branch.
I don't have that script at all visible on my branch, but I need to run it in order to get something, to continue working on my branch. There are three problems here:
- I don't want to checkout to another branch. I want to work on my own branch all the time
- I don't want to commit anything before I finish
- I want to use something from another branch that is not visible on my own branch
How is that possible and is it possible at all?
CodePudding user response:
There are many ways to deal with this. They all boil down to the fact that you're trying too hard, right now.