Github

cd /mnt/minecraft-ssd/home-server || exit 1

echo "===== SET GIT IDENTITY ====="

git config user.name "Robert86b"

git config user.email [email protected]

echo

echo "===== STAGE VALHALLA ====="

git add .

echo

echo "===== VERIFY STAGED FILES ====="

git status --short

echo

echo "===== CREATE FIRST COMMIT ====="

git commit -m "Initial Valhalla homelab configuration"

echo

echo "===== RESULT ====="

git log --oneline -1