ESC

Homelab

All Homelab AI & Agents Trading Thoughts
How I use and installed Gitea in my homelab

How I use and installed Gitea in my homelab

Initial Setup

NB: Create Initial Repo and Change Repo Name


cd /home/<user>/<project>
git config --global user.name "Your Name"
git config --global user.email "[email protected]" 
git init
git remote add origin https://<user>:YOUR_GITEA_TOKEN@gitea.<domain>.com/<user>/traefik-n8n.git
git add .
git commit -m "Initial commit"
git branch -M main
git push -u origin main

Updates

NB: Change to app directory

cd /home/<user>/WHAT
git add .
git commit -m "Update files"
git push -u origin main

1. Install Git

sudo apt update && sudo apt install git -y