Hi folks,
I want to update the Release Notes for the release/9.x, but seems like 'git llvm push' only supports commits to the master/trunk.
What's the current process for such patches?
Thanks,
Alex.
Hi folks,
I want to update the Release Notes for the release/9.x, but seems like 'git llvm push' only supports commits to the master/trunk.
What's the current process for such patches?
Thanks,
Alex.
Ping?
Ping?
In the release_80 branch, I updated[1] the script to commit to release_80
instead of trunk. We could make a similar change in the release_90 branch.
That seems like the easiest way to get it to work.
-Tom
I just use SVN for release branches. For release notes it's
particularly easy since you only need to check out the docs/
directory:
$ svn co https://llvm.org/svn/llvm-project/llvm/branches/release_90/docs/
release_90_llvm_docs
$ cd release_90_llvm_docs
(edit ReleaseNotes.rst)
$ svn commit
If that doesn't work, I'm always happy to land patches for anyone on the branch.
Thanks,
Hans