cjm345
#1
Hey llvm-dev,
Was there a recent git script change that I missed? The usual command no longer works on my local machine. Any ideas?
llvm-project/llvm> git llvm push -n
git remote get-url origin
returned 129
error: Unknown subcommand: get-url
Thanks,
Cam
Hey Cam, it works for me on TOT (89fb9e8ce15).
What does the failed command return for you? It should be:
git remote get-url origin
https://github.com/llvm/llvm-project.git
Best,
Stefan
“git remote get-url” is apparently fairly new, the old version is “git config remote.origin.url”.
Might be worth using that for compatibility.
You can propose a change for that, but note that it is there (at least) since , which is 3 years old now.
pogo59
#5
I see that there’s no required minimum version of ‘git’ listed on the Getting Started page
https://llvm.org/docs/GettingStarted.html
might want to add one?
–paulr
cjm345
#6
Thanks for the quick replies, everyone.
We managed to have a new git installed on our local boxes, so this is no longer an issue for me.
Thanks again,
Cam
Sorry – there was another thread on this, but I hadn’t yet pushed the fix. I just committed r367259 which should fix this issue.