1.4 KiB
1.4 KiB
Local Git Repository - No GitHub Sync
This repository is configured for LOCAL VERSION CONTROL ONLY.
✅ Current Configuration
- ✅ Git is enabled for version control
- ✅ All commits are stored locally on this server
- ✅ NO GitHub remote is configured
- ✅ NO changes will be pushed online
- ✅ All changes stay on this server only
📝 How to Commit Changes
Easy Method (Recommended)
Use the provided script:
cd /media/pts/Website/SkyArtShop
./local-commit.sh
Manual Method
cd /media/pts/Website/SkyArtShop
git add -A
git commit -m "Your commit message here"
🔍 View Your Commits
cd /media/pts/Website/SkyArtShop
git log --oneline
✋ Important Notes
- No GitHub Sync: This repository has NO GitHub remote configured
- Local Only: All commits are stored in
/media/pts/Website/SkyArtShop/.git/ - Server Backups: Make sure to backup this entire folder to preserve your git history
- No Online Profile: Your commits will NOT appear on your GitHub profile
🚫 What NOT to Do
- ❌ Do NOT run
git remote add origin <url> - ❌ Do NOT run
git push - ❌ Do NOT connect this to GitHub
✅ What You Can Do
- ✅ Commit changes locally anytime
- ✅ View commit history
- ✅ Create branches
- ✅ Revert to previous versions
- ✅ Track all your changes over time
Last Updated: December 13, 2025