#!/bin/bash

# Change to the website directory
cd /usr/www/amatsuro/manoktok.com

# Remove existing remote
git remote remove origin

# Clean up any leftover files
git reset --hard HEAD
git clean -fd

echo "Cleanup completed!" 