-
Git Local: Configurado
- Nome: NEO-SH1W4
- Email: joao.oliveirax@icloud.com
-
Chave SSH: Gerada e pronta
- Arquivo:
~/.ssh/symbeon_id_ed25519 - Chave pública copiada para área de transferência
- Arquivo:
Sua chave pública (já copiada):
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPEBafTQJ3IlDxsSlom+ZXLgXsXSnD4Z1IT9NJV5Vu3j symbeon@local
Passos:
- Acesse: https://github.com/settings/keys
- Clique em "New SSH key"
- Título sugerido: "PC João - Windows"
- Cole a chave (Ctrl+V)
- Clique em "Add SSH key"
Execute este comando PowerShell como Administrador:
Set-Service ssh-agent -StartupType Automatic
Start-Service ssh-agentDepois, no PowerShell normal:
ssh-add "$env:USERPROFILE\.ssh\symbeon_id_ed25519"ssh -T git@github.comDeve retornar: "Hi NEO-SH1W4! You've successfully authenticated..."
Acesse: https://github.com/settings/profile
Sugestões de configuração:
- Name: João Oliveira (ou seu nome completo)
- Bio: Sugestões:
- "🚀 Full Stack Developer | 💻 DevOps Enthusiast | 🔧 Automation Expert"
- "Building innovative solutions with modern tech stacks"
- "Passionate about clean code and efficient systems"
- Company: Sua empresa ou "@freelancer"
- Location: Sua cidade/país
- Website: Seu portfolio ou LinkedIn
- Twitter/X: @seuusername
- LinkedIn: linkedin.com/in/seuusername
Crie um repositório com seu username: NEO-SH1W4/NEO-SH1W4
Exemplo de README.md:
# Olá, eu sou João! 👋
## 🚀 Sobre Mim
Desenvolvedor Full Stack apaixonado por criar soluções inovadoras e automatizar processos.
## 🛠️ Tecnologias & Ferramentas





## 📊 GitHub Stats

## 🌟 Projetos em Destaque
- [GitHub Mastery](https://github.com/NEO-SH1W4/github-mastery) - Sistema de gestão de projetos
- [GuarDrive](https://github.com/NEO-SH1W4/guardrive) - Solução de backup automatizado
- [MCP Ecosystem](https://github.com/NEO-SH1W4/mcp-ecosystem) - Ferramentas MCP
## 📫 Como me encontrar
- LinkedIn: [João Oliveira](https://linkedin.com/in/seuusername)
- Email: joao.oliveirax@icloud.com- Acesse: https://github.com/settings/repositories
- Configure:
- Default branch name:
main - Automatically delete head branches: ✓
- Default branch name:
- Acesse: https://github.com/settings/security
- Ative:
- Two-factor authentication (2FA)
- Vigilant mode para commits verificados
Para CI/CD e automações:
- Acesse: https://github.com/settings/tokens
- Clique em "Generate new token (classic)"
- Configure:
- Note: "GitHub Mastery CI/CD"
- Expiration: 90 days
- Scopes:
repo,workflow,write:packages
Certifique-se que seu email está verificado: https://github.com/settings/emails
git clone git@github.com:NEO-SH1W4/repositorio.gitgit remote add upstream git@github.com:original-owner/original-repo.gitgpg --gen-key
git config --global user.signingkey YOUR_KEY_ID
git config --global commit.gpgsign true- Chave SSH adicionada ao GitHub
- SSH Agent configurado e rodando
- Teste SSH funcionando
- Perfil atualizado com informações
- Foto de perfil adicionada
- Bio escrita
- README do perfil criado
- 2FA ativado
- Email verificado
# Verificar se o agente está rodando
Get-Service ssh-agent
# Reiniciar o agente
Stop-Service ssh-agent
Start-Service ssh-agent
# Re-adicionar a chave
ssh-add "$env:USERPROFILE\.ssh\symbeon_id_ed25519"Certifique-se de usar URLs SSH:
# Mudar de HTTPS para SSH
git remote set-url origin git@github.com:NEO-SH1W4/repositorio.git