all files written as modified, but git diff is empty

This commit is contained in:
painpain@minty
2026-02-02 17:41:02 +01:00
parent 9f732f3333
commit dc374ab7b4
9 changed files with 34 additions and 148 deletions
+1
View File
@@ -39,6 +39,7 @@ echo "iso = $ISO"
qemu-system-x86_64 \
-m $RAM \
-nic user \
-boot once=d \
-cdrom $ISO \
-drive file=$IMG \
+2 -2
View File
@@ -1,14 +1,14 @@
#!/bin/bash
clone ()
{
DEFAULT_ADDR=""
BASE="ssh://git@6.tcp.eu.ngrok.io:11272"
URL=ssh://git@6.tcp.eu.ngrok.io:11272
if [ $# -ne "1" ]; then
PROFIL_NAME="$1";
PROJECT_NAME="$2";
else
PROFIL_NAME="painpain";
PROJECT_NAME="$1";
git clone --recurse-submodules git@github.com:pain-pin/$PROJECT_NAME.git;
fi
git clone --recurse-submodules ${BASE}/$PROFIL_NAME/$PROJECT_NAME.git;
}
+3 -1
View File
@@ -1,4 +1,6 @@
#!/usr/bin/bash
ping -c1 9.9.9.9
ping -c1 | grep transmit
exit 0