added copy of gitconfig via logon script

This commit is contained in:
Michael H.G. Schmidt 2021-03-27 16:01:19 +01:00
parent a542d322f6
commit de956cc30c

View File

@ -30,6 +30,14 @@ if NOT EXIST %USERPROFILE%\.ssh\config (
copy /Y %TOOLS%\scripts\config\ssh-config.txt %USERPROFILE%\.ssh\config
)
rem GIT
if NOT EXIST %USERPROFILE%\.gitconfig (
if EXIST %TOOLS%\personal\gitconfig (
echo setup for GIT ...
copy /Y %TOOLS%\personal\gitconfig %USERPROFILE%\.gitconfig
)
)
rem VIM
if NOT EXIST %USERPROFILE%\.vimrc (
echo setup for VIM ...