This commit is contained in:
USER
2025-08-22 16:54:00 +01:00
parent 305b2d8baa
commit e739ef57af
8 changed files with 13 additions and 11 deletions

20
git/BaseGit.bat Executable file
View File

@ -0,0 +1,20 @@
@echo off
set check_computername=%COMPUTERNAME%
echo "Found computer %check_computername%"
set SCRIPTS="C:\Scripts"
set GIT="C:\Program Files\Git\git-bash.exe"
mkdir %SCRIPTS%
if exist %GIT% (
echo "Found git. Attempting pull"
cd %SCRIPTS%\wBase
%GIT% -c "git pull"
cd %SCRIPTS%\wLocal
%GIT% -c "git pull"
)

37
git/BaseGitClone.bat Executable file
View File

@ -0,0 +1,37 @@
@echo on
set check_computername=%COMPUTERNAME%
echo "Found computer %check_computername%"
set SCRIPTS="C:\Scripts"
set GIT="C:\Program Files\Git\git-bash.exe"
mkdir %SCRIPTS%
if exist %GIT% (
del /f/s/q "C:\Scripts\wBase\*.*"
rmdir /s/q "C:\Scripts\wBase"
del /f/s/q "C:\Scripts\wLocal\*.*"
rmdir /s/q "C:\Scripts\wLocal"
del /f/s/q "C:\Scripts\wPublic\*.*"
rmdir /s/q "C:\Scripts\wPublic"
echo "Found git."
echo "Attempting clone of wBase"
cd %SCRIPTS%
%GIT% -c "git clone https://mint.nopenso.com/mirror/wBase.git"
echo "Attempting clone of wLocal"
cd %SCRIPTS%
%GIT% -c "git clone https://mint.nopenso.com/mirror/wLocal.git"
echo "Attempting clone of wPublic"
cd %SCRIPTS%
%GIT% -c "git clone https://mint.nopenso.com/mirror/wPublic.git"
del /f/s/q "C:\wPublic\*.*"
rmdir /s/q "C:\wPublic"
)

23
git/BaseGitConfig.bat Executable file
View File

@ -0,0 +1,23 @@
@echo on
set check_computername=%COMPUTERNAME%
echo "Found computer %check_computername%"
set SCRIPTS="C:\Scripts"
set GIT="C:\Program Files\Git\git-bash.exe"
mkdir %SCRIPTS%
if exist %GIT% (
del /f/s/q C:\Users\zuper\.gitconfig
%GIT% -c "git config --global core.sshCommand 'ssh -i ~/.ssh/giteadeploy -F /dev/null'"
%GIT% -c "git config --global user.name "USER""
%GIT% -c "git config --global user.email "USER@DOMAIN.com""
%GIT% -c "git config --global init.defaultBranch main"
%GIT% -c "git config --global pull.rebase "False""
%GIT% -c "git config --global --add safe.directory C:/Scripts/wBase"
%GIT% -c "git config --global --add safe.directory C:/Scripts/wLocal"
%GIT% -c "git config --global --add safe.directory C:/Scripts/wPublic"
%GIT% -c "git config --global --add safe.directory C:/Scripts/wUserp"
)

27
git/BaseGitPull.bat Executable file
View File

@ -0,0 +1,27 @@
@echo on
set check_computername=%COMPUTERNAME%
echo "Found computer %check_computername%"
set SCRIPTS="C:\Scripts"
set GIT="C:\Program Files\Git\git-bash.exe"
mkdir %SCRIPTS%
if exist %GIT% (
echo "Found git."
echo "Attempting pull of wBase"
cd %SCRIPTS%\wBase
%GIT% -c "git pull"
echo "Attempting pull of wLocal"
cd %SCRIPTS%\wLocal
%GIT% -c "git pull"
echo "Attempting pull of wPublic"
cd %SCRIPTS%\wPublic
%GIT% -c "git pull"
)