[llvm] 8254f4a - [Docs][Phabricator] Mention how to create a draft revision

Shivam Gupta via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 30 23:13:32 PDT 2021


Author: Shivam Gupta
Date: 2021-08-31T11:43:04+05:30
New Revision: 8254f4afcbca7ea32dfe9739459016241f0a60c2

URL: https://github.com/llvm/llvm-project/commit/8254f4afcbca7ea32dfe9739459016241f0a60c2
DIFF: https://github.com/llvm/llvm-project/commit/8254f4afcbca7ea32dfe9739459016241f0a60c2.diff

LOG: [Docs][Phabricator] Mention how to create a draft revision

https://llvm.org/docs/Phabricator.html have two links to Arcnist guide but
none of them mention how to create a draft revision. It would create some less noise if
developers create draft revisoin in this(--draft) way instead of [WIP] tag way.

Reviewed By: dblaikie

Differential Revision: https://reviews.llvm.org/D108970

Added: 
    

Modified: 
    llvm/docs/Phabricator.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/Phabricator.rst b/llvm/docs/Phabricator.rst
index 6e82a86c65be..3fc3c3c87333 100644
--- a/llvm/docs/Phabricator.rst
+++ b/llvm/docs/Phabricator.rst
@@ -47,6 +47,18 @@ repository is to run:
   arc 
diff  HEAD~
 
 
+Sometime you may want to create a draft revision to show the proof of concept
+or for experimental purposes, In that case you can use the `--draft` option. It
+will either create a new draft revisoin or convert the original revision to a
+draft revision depending on your local branch status. The good part is: it will not
+send mail to llvm-commit mailing list, patch reviewers, and all other subscribers,
+buildbot will also run on every patch update:
+
+::
+
+  arc 
diff  --draft HEAD~
+
+
 If you later update your commit message, you need to add the `--verbatim`
 option to have `arc` update the description on Phabricator:
 


        


More information about the llvm-commits mailing list