Initial commit: Bulk Renamer with AppImage build and Gitea push notes

Made-with: Cursor
This commit is contained in:
Bulk Renamer
2026-03-03 21:58:28 -06:00
commit 22501fe0b5
13 changed files with 1135 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# Push to your Gitea
1. **Create a new repository** on your Gitea instance (e.g. `bulk-renamer`, empty, no README).
2. **Add the remote and push** (replace with your Gitea URL and username):
```bash
cd "/home/jorg/Documents/Cursor Projects/Bulk Renamer"
git remote add origin https://your-gitea.example.com/your-username/bulk-renamer.git
# or SSH:
# git remote add origin git@your-gitea.example.com:your-username/bulk-renamer.git
git branch -M main
git push -u origin main
```
3. If Gitea asks for auth, use your normal login (or a token for HTTPS).