Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
r-fu2864y@ScriptCoded no. The was a additional change and they dont want me to create a new branch. I tried to push force but the new commit is not showing.
-
C0D4681464ygit checkout -b <new-branch-name>
git commit -m "I did something cool"
git pull <base-branch-name>
# work out conflicts if any and commit changes
git push -u <new-branch-name> -
Git cares nout whether a branch is merged. Some git flow models use regular committing / merging on the same branch by design.
You're probably blocked by a commit hook or similar that's decided your branch is merged, closed and therefore isn't allowed any more changes. -
r-fu2864y@AlmondSauce it was actually merged. Like its in prod but they dont want to create an new branch for some reason for a new issue.
Related Rants
Ok its been an hour now trying to find a way to push a NEW commit to a MERGED branch. SMH! Help gitlab!
rant
gitlab
stupid