melawy-archiso-config/Melawy-Linux-Developer-Edition/cleanup.sh

20 lines
378 B
Bash
Raw Permalink Normal View History

2024-07-19 21:52:47 +05:00
#!/bin/bash
mv .git/config config
rm -rf .git
git init -b main
mv config .git/config
git add --all .
git commit -m "cleanup"
git push origin main --force
echo "################################################################"
echo "################### cleanup Done ######################"
echo "################################################################"