8 lines
267 B
Bash
Executable File
8 lines
267 B
Bash
Executable File
#!/bin/bash
|
|
cd ~/firefrost-work/firefrost-operations-manual
|
|
echo "Mirror test at $(date)" >> test-mirror.txt
|
|
git add test-mirror.txt
|
|
git commit -m "Test mirror sync with lowercase username"
|
|
git push
|
|
echo "Pushed to Gitea - mirror should sync to GitHub automatically"
|