Problem with checkout develop #76
-
|
Hello community :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
The problem was solved during a videoconference. The problem was that a branch called
git internally creates a
To solve this, we renamed the branch These are the commands used: git switch develop/<something>
git branch -m lab/<something>
git checkout -b develop |
Beta Was this translation helpful? Give feedback.

The problem was solved during a videoconference. The problem was that a branch called
develop/<something>had been created and that's why it didn't allow to create adevelopbranch. Internally, git stores branches as directories and files. If we do a branch restructure like:develop/Adevelop/Bdevelop/Cgit internally creates a
developfolder and inside it puts the branchesA,BandC. Since you have created adevelopfolder, there can no longer be a file (and therefore a branch) with the same name.To solve this, we renamed the branch
develop/<something>tolab/<something>and then we were a…