Git
Setup Git version control.
Install
Windows
choco feature enable -n=useRememberedArgumentsForUpgrades
choco install -y git.install --params "'/NoShellIntegration'"Ubuntu
sudo add-apt-repository -y ppa:git-core/ppa
sudo apt update && sudo apt install -y git git-lfsSettings
Let Windows use LF end of line:
# Default is true on Windows machines
git config --global core.autocrlf inputYou might want to add a <repo>/.gitattributes file in the repo to enforce the setting.
.gitattributes
* text=auto eol=lfApply the changes
git add --renormalize .Last updated on