gitPython - Pull request url. Once we do git push, is there a way to get the PR url back from the cmd line? I was not able to get any libraries return that. Is this possible? #1149
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Somehow I want retrieve pull request url:
I hope i have explained myself. The only workaround I currently do is: I fabricate that URL myself within the application. But it will be good if there is a gitPython library which would do so. |
Beta Was this translation helpful? Give feedback.
-
I think what you can try is to implement your own progress delegate (search for 'progress') to see if it gets to see the given line of the remote. Generally GitPython sees all lines sent by the remote and definitely makes all of them available to the delegate. It's probably worth perusing the code to see how exactly it works, and how it is used. Please feel free to post follow ups on the closed issue. |
Beta Was this translation helpful? Give feedback.
I think what you can try is to implement your own progress delegate (search for 'progress') to see if it gets to see the given line of the remote.
Generally GitPython sees all lines sent by the remote and definitely makes all of them available to the delegate. It's probably worth perusing the code to see how exactly it works, and how it is used.
Please feel free to post follow ups on the closed issue.