소프트웨어/일반
[VS Code] 확장 프로그램 리스트 백업 및 복구
이로이로
2020. 8. 13. 18:25
1. 백업
extensions.list에 현재 설치한 확장 프로그램들의 목록이 생성됩니다.
code --list-extensions > extensions.list
2. 복구
위에서 생성한 확장 프로그램 목록을 VS Code에 복구 합니다.
cat extensions.list |% { code --install-extension $_}
출처:
stackoverflow.com/a/49936683/3215911
How can you export the Visual Studio Code extension list?
I need to send all my installed extensions to my colleagues. How can I export them? The extension manager seems to do nothing... It won't install any extension.
stackoverflow.com