-
Notifications
You must be signed in to change notification settings - Fork 0
versionar_projetos
alberisf edited this page Dec 27, 2017
·
1 revision
Verificar se já existem chaves SSH criadas, para verificar entrar no diretório ~/.ssh do usuário git, ela deve conter
os arquivos id_rsa e id_rsa.pub.
Se não existirem deve-se gerar as chaves.
Gerar chaves SSH:
ssh-keygen
Enviar chave pública (id_rsa.pub) para ser adicionada no servidor onde está hospedado o repositório git.
Logo após, entrar na pasta de cada projeto e executar os seguintes comandos:
git init
git add .
git commit -m 'commit inicial'
git remote add origin [email protected]:/var/www/nome_projeto.git
git push origin master