melawy-plasma-plasmoid-win7.../cleanup.sh

20 lines
378 B
Bash
Raw Permalink Normal View History

2023-11-13 11:54:46 +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 "################################################################"