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 adevelop
branch. Internally, git stores branches as directories and files. If we do a branch restructure like:develop/A
develop/B
develop/C
git internally creates a
develop
folder and inside it puts the branchesA
,B
andC
. Since you have created adevelop
folder, 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…