From 0949343f9bc215b14801c9b2873c73ecfc26a2a2 Mon Sep 17 00:00:00 2001 From: marcoitaloesp-ai Date: Fri, 19 Dec 2025 08:29:54 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20migrar=20reposit=C3=B3rio=20para=20Git?= =?UTF-8?q?ea=20(git.cnxifly.com)=20-=20removido=20GitHub?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/copilot-instructions.md | 46 +++++++++++++++++++++++++++++++-- 1 file changed, 44 insertions(+), 2 deletions(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 26c46aa..e654160 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -1,4 +1,43 @@ -# GitHub Copilot Instructions +# Copilot Instructions + +## 🔄 REPOSITÓRIO GIT - GITEA (Self-Hosted) + +**IMPORTANTE:** O repositório principal é o Gitea no nosso servidor, NÃO o GitHub. + +### Configuração do Repositório + +```bash +# Repositório principal (Gitea) +git remote -v +# gitea https://git.cnxifly.com/marco/webmoney.git + +# URL Web +https://git.cnxifly.com/marco/webmoney + +# Credenciais Gitea +Usuário: marco +Senha: M@ster9354 +``` + +### Comandos Git + +```bash +# Push para Gitea (SEMPRE usar este) +git push gitea main + +# Pull do Gitea +git pull gitea main + +# Commit padrão +git add -A && git commit -m "descrição" && git push gitea main +``` + +### ❌ Proibições Git + +- NUNCA usar `git push origin` (GitHub foi descontinuado) +- NUNCA criar repositórios no GitHub para este projeto + +--- ## 🚨 REGRA CRÍTICA DE DEPLOY @@ -47,7 +86,10 @@ Os scripts de deploy: - `VERSION++` (incrementar versão) - Atualizar `CHANGELOG.md` (documentar mudanças) - Atualizar `README.md` (sempre que necessário - novas features, requisitos, comandos, etc.) -5. Commit e push +5. Commit e push para Gitea: + ```bash + git add -A && git commit -m "descrição" && git push gitea main + ``` ### 📝 Quando atualizar README.md