How to git push --force
?
#2963
Answered
by
ilyagr
marcinjahn
asked this question in
Q&A
-
I rebased a branch which already had been pushed to remote, now I need to
How to do that properly? |
Beta Was this translation helpful? Give feedback.
Answered by
ilyagr
Feb 6, 2024
Replies: 1 comment 2 replies
-
Most likely, you need to Update: Perhaps this question should also be in the FAQ. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
marcinjahn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Most likely, you need to
jj git fetch
from that remote and resolve any branch conflicts (see the FAQ) if they occur. Then,jj git push
should work.Update: Perhaps this question should also be in the FAQ.