Created
May 13, 2022 13:54
-
-
Save ianpegg/bdc4f943d1c14844e68993939b1254f4 to your computer and use it in GitHub Desktop.
Basic user customisation script for the Homestead virtual machine.
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/sh | |
# Set the default command line text editor: | |
sudo update-alternatives --set editor /usr/bin/vim.basic | |
# Set the default GIT push method: | |
git config --global push.default simple | |
# Set GIT user name and email in the global scope: | |
git config --global user.name "Your Name" | |
git config --global user.email "[email protected]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment