-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_git.sh
More file actions
27 lines (22 loc) · 758 Bytes
/
setup_git.sh
File metadata and controls
27 lines (22 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash
# Run this script inside your PathSeeker folder to initialize Git and push to GitHub
echo "🚀 PathSeeker — GitHub Setup"
echo "=============================="
# 1. Initialize git
git init
git branch -M main
# 2. Stage all files
git add .
# 3. Commit
git commit -m "Initial commit — PathSeeker v4 🗺️"
echo ""
echo "✅ Git initialized and committed!"
echo ""
echo "Now run these commands (replace YOUR_USERNAME):"
echo ""
echo " git remote add origin https://github.com/YOUR_USERNAME/PathSeeker.git"
echo " git push -u origin main"
echo ""
echo "📌 IMPORTANT: Before pushing, make sure you:"
echo " 1. Created a new repo on github.com named 'PathSeeker'"
echo " 2. Added your GEMINI_API_KEY to the .env file (not committed)"