Skip to content

Instantly share code, notes, and snippets.

@madgrk
Created February 2, 2024 11:34
Show Gist options
  • Save madgrk/b04fa2f9f642e1c2267c2f057318ae02 to your computer and use it in GitHub Desktop.
Save madgrk/b04fa2f9f642e1c2267c2f057318ae02 to your computer and use it in GitHub Desktop.
VSCode backup - restore extensions
1. Backup extensions
code --list-extensions >> vs_code_extensions_list.txt
2. Restore extensions
cat vs_code_extensions_list.txt | xargs -n 1 code --install-extension
3. Uninstall extensions
code --list-extensions | xargs -n 1 code --uninstall-extension
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment