-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprepare_github.sh
More file actions
executable file
·38 lines (32 loc) · 1.17 KB
/
prepare_github.sh
File metadata and controls
executable file
·38 lines (32 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
echo "🚀 Preparando projeto ProcessarLoteNFe para GitHub..."
# Verificar status do git
echo "📋 Status atual do repositório:"
git status
echo ""
echo "📦 Arquivos que serão enviados:"
git ls-files
echo ""
echo "🔗 Para conectar ao GitHub, siga estes passos:"
echo ""
echo "1. Acesse: https://github.com/new"
echo "2. Nome do repositório: ProcessarLoteNFe"
echo "3. Descrição: Processador Automático de XML de NF-e - Script PowerShell para extração e substituição de códigos de produto"
echo "4. Marque como Public"
echo "5. NÃO inicialize com README (já temos um)"
echo "6. Clique em 'Create repository'"
echo ""
echo "7. Depois execute estes comandos:"
echo " git remote add origin https://github.com/SEU_USUARIO/ProcessarLoteNFe.git"
echo " git push -u origin main"
echo ""
echo "8. Adicione estes topics no GitHub:"
echo " powershell, xml, nfe, automation, batch-processing, brazil, fiscal, invoice, script, xml-processing"
echo ""
echo "9. Crie um release v2.2.0 usando o conteúdo do CHANGELOG.md"
echo ""
# Mostrar informações do commit
echo "📝 Último commit:"
git log --oneline -1
echo ""
echo "✅ Projeto pronto para upload no GitHub!"