WSL Repo Move on Local Machine
Create a projects directory in WSL
Section titled “Create a projects directory in WSL”mkdir -p ~/projects/rhino-rails
Copy your Stencil project
Section titled “Copy your Stencil project”cp -r /mnt/c/Users/rhino/Documents/Repos/Stencil ~/projects/rhino-rails/
Navigate to new location
Section titled “Navigate to new location”cd ~/projects/rhino-rails
Remove old node_modules (Windows-installed)
Section titled “Remove old node_modules (Windows-installed)”rm -rf node_modules
Fresh install in Linux environment
Section titled “Fresh install in Linux environment”npm install
Verify Git is working
Section titled “Verify Git is working”git statusgit remote -v
Open VS Code from Linux filesystem
Section titled “Open VS Code from Linux filesystem”code .