-
I usually use comamnd "git push origin remote --no-follow-tags" to push my codes.
my code is: url = "ssh://android@gerrit.com:29418/kernel/msm-5.4"
remote = "HEAD:refs/for/DEV_branch --no-follow-tags"
git_repo.git.push(url, remote) How to fix my issue? |
Beta Was this translation helpful? Give feedback.
Answered by
Byron
May 27, 2021
Replies: 1 comment 1 reply
-
What you want is this: url = "ssh://android@gerrit.com:29418/kernel/msm-5.4"
remote = "HEAD:refs/for/DEV_branch"
git_repo.git.push(url, remote, no_follow_tags=true) You will not receive progress though. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Byron
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What you want is this:
You will not receive progress though.
Does that work for you?