816 B
816 B
Syncing master with gitea remote (d-bis/proxmox)
If git push gitea master fails with non-fast-forward, local and gitea.d-bis.org/d-bis/proxmox have diverged.
cd /path/to/proxmox
git fetch gitea
git log --oneline --left-right master...gitea/master | head -40
Resolve by either:
-
Merge (preserves both histories):
git pull gitea master --no-rebase
fix conflicts, thengit push gitea masterandgit push origin masteras needed. -
Rebase (linear history; use only if your team agrees):
git pull gitea master --rebase
then push both remotes.
Do not force-push to gitea unless you intend to rewrite shared history.
CyberSecur-related commits exist on GitHub origin; gitea may lack them until a successful merge and push.