[PATCH] D128645: Update developer policy.
Hubert Tong via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jun 28 17:35:39 PDT 2022
hubert.reinterpretcast added inline comments.
================
Comment at: llvm/docs/DeveloperPolicy.rst:88
+#. Patches should be unified diffs with "infinite context" (i.e. using something
+ like `git diff -U999999 main`).
+
----------------
Using `git diff` like this, there are risks that `main` is now ahead of your branch's base. Probably safer to use `HEAD~n` where `n` is the number of commits you have on your branch.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D128645/new/
https://reviews.llvm.org/D128645
More information about the cfe-commits
mailing list