MerchFlow-AI / force_push.py
Gaurav vashistha
UI Update: Glassmorphism Design & Binary Cleanup
c7dc4b9
raw
history blame contribute delete
334 Bytes
import subprocess
def main():
print("Executing force push...")
command = "git push --force space HEAD:main"
result = subprocess.run(command, shell=True, capture_output=True, text=True)
print("STDOUT:")
print(result.stdout)
print("STDERR:")
print(result.stderr)
if __name__ == "__main__":
main()