[PATCH] D78598: [clangd] Remove vscode plugin: now https://github.com/clangd/vscode-clangd

Sam McCall via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Apr 22 02:40:24 PDT 2020


sammccall added a comment.

In D78598#1995939 <https://reviews.llvm.org/D78598#1995939>, @nridge wrote:

> Is there an easy way to transplant patches written against the old repo, into the new one?


If you have a patch file (from git format-patch or downloaded from phab), you should be able to use `patch -p`

  cd vscode-clangd # new repo
  patch -p5 < old.patch

Where -p1 strips off the conventional a/ vs b/ diff prefix, and the other 4 is for `clang-tools-extra/clangd/clients/clangd-vscode`.
Disclaimer: haven't tried this, may be off-by-one. Sorry for the hassle!


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D78598/new/

https://reviews.llvm.org/D78598





More information about the cfe-commits mailing list