We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build the branch set as default branch as when it's built as non default.
NOTE: the correct command here is git checkout --force origin/branch/with/slashes
git checkout --force origin/branch/with/slashes
The git checkout --force branch-with-slashes command fails because the branch does not exist.
git checkout --force branch-with-slashes
Project.default_branch is saved in an improperly way.
Project.default_branch
>>> Version.objects.get(slug='branch-with-slashes').__dict__ ... 'type': 'branch', 'identifier': 'origin/branch/with/slashes', 'verbose_name': 'branch/with/slashes', 'slug': 'branch-with-slashes', >>> Version.objects.get(slug='branch-with-slashes').project.default_branch 'branch-with-slashes'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Details
Expected Result
Build the branch set as default branch as when it's built as non default.
Actual Result
The
git checkout --force branch-with-slashes
command fails because the branch does not exist.Project.default_branch
is saved in an improperly way.The text was updated successfully, but these errors were encountered: