File size: 513 Bytes
8c6346f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

# Replace <repository_url> 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