diff --git a/Makefile b/Makefile index 2ddb1f5..d16270e 100644 --- a/Makefile +++ b/Makefile @@ -33,14 +33,8 @@ sync-to-github: sync-to-gitea: @echo "Synchronizing to Gitea..." - @if ! git remote | grep -q '^gitea$$'; then \ - echo "Adding Gitea remote..."; \ - git remote add gitea $(GITEA_REPO_URL); \ - fi - git push gitea --all - git push gitea --tags - @echo "Synchronization to Gitea complete." - + git fetch github + git merge github/main # Declaramos el target como PHONY ya que no corresponde a un archivo real (opcional pero recomendado)