Last active
February 3, 2019 21:23
-
-
Save robsonfaxas/0a19792544e822562b58414be2b76763 to your computer and use it in GitHub Desktop.
#git - 6 - clone, pull, push e fork
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-> Clonando o reositório TestGit e dando o nome desse clone de github-test | |
g clone [email protected]:RobsonFaxas/TestGit.git github-test | |
-> Pull um repositório (atualizar o local para o atualizado no github) | |
git pull | |
-> push um repositório (atualizar o repositório do github baseado nos commits locais) | |
git push -u origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment