# Initialize the local folder as a git repo
git init -m main
# Create a basic file so the repo isn't empty
echo "
Buildnbuyit - The Oasis Legacy
" > index.html
# Stage and commit the file
git add .
git commit -m "Initial commit: setting up infrastructure"
# Link your local folder to your GitHub repo
# (Replace 'YOUR_USERNAME' with your actual GitHub username)
git remote add origin https://github.com/Mangrove007/the-oasis-legacy.git
# Push the code to the main branch
git push -u origin main