Advertisement
Guest User

Untitled

a guest
Jun 29th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. git init
  2. git add --all
  3. git commit -m 'Teste de github'
  4. git remote add origin git@github.com:usuario/repositoriogithub.git
  5. git push origin master
  6.  
  7. git init (inicia o git no diretório do seu código)
  8.  
  9. git add --all (prepara todos (--all) os seus arquivos para o commit)
  10.  
  11. git commit -m 'Teste de github' (realiza o commit localmente dos seus arquivos)
  12.  
  13. git remote add origin https://github.com/seuusuarui/seurepositorio.git
  14.  
  15. git push -u origin master
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement