#!/bin/bash # Replace with your GitHub repository URL REPO_URL="https://github.com/unitconvert/Model-.git" # Navigate to the directory containing your pages cd "D:/modle/LTX-Video-gradio-ui" || exit # Initialize a Git repository if not already initialized if [ ! -d ".git" ]; then git init git remote add origin "$REPO_URL" git checkout -b gh-pages fi # Add all files, commit, and push to gh-pages branch git add . git commit -m "Update pages" git push origin gh-pages