I currently have a Git branch feature/i18n which I am using to create different localizations of my app. I want to create a sub-branch for each language so I can integrate them separately. Is it possible to create sub-directories, e.g. feature/i18n/French or feature/i18n/Spanish, so they are more easily organized? I am getting the following error message from Git: error: unable to resolve reference refs/heads/feature/i18n/spanish: Not a directory.
|
|
||||
|
Yes, you can create those branches. The problem preventing you from sub-dividing your i18n namespace, so to speak, is that you already have the Every branch is created as a file under .git/refs/heads, so when you created your branch, Git created the file Now you're trying to created To create those "sub-branches", you'll have to delete or rename your |
|||
|
|
|
you have created a branch feature/i18n That means you have created a file by name feature/i18n. Now to create a file feature/i18n/spanish, i18 must be a Directory. To fix this delete feature/i18n branch and create feature/i18n/spanish |
|||
|
|
.git/refs/heads– Daniel Hilgarth Feb 6 at 15:03