Skip to content

Instantly share code, notes, and snippets.

@asears
Last active January 30, 2020 02:18
Show Gist options
  • Select an option

  • Save asears/47e108ade35834bdb6a162c69eff3590 to your computer and use it in GitHub Desktop.

Select an option

Save asears/47e108ade35834bdb6a162c69eff3590 to your computer and use it in GitHub Desktop.
Ubuntu Installs for wsl
#!/bin/bash
# VS Code Server
code
# This script should not be run, for reference only
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
# Install Vim profile from repo
# Setup Git
git config --global user.name "Andrew Sears"
git config --global user.email "[email protected]"
git commit --amend --reset-author
git config credential.helper store
# Ignore permission changes between WSL and Windows
git config --global core.filemode false
# Autolf on the line ending changes
git config --global core.autocrlf false
# Set this to true if issues between WSL and Windows
git config --global core.ignorecase false
# git ls-files --debug
# git rm --cached -r .
# git reset --hard
# fix Python.h: No such file or directory with build of dlib
apt-get install python3-dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment