Last active
January 30, 2020 02:18
-
-
Save asears/47e108ade35834bdb6a162c69eff3590 to your computer and use it in GitHub Desktop.
Ubuntu Installs for wsl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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