Skip to content

rafaelcastrobr/use-Git

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

Use GIT git

  • git pull (💡 puxa novas versões)
  • git add . (💡 adiciona modificações)
  • git commit -m ".." (💡 descreve mudanças)
  • git push (💡 adiciona mudanças novas na nuvem)

Nova Branch (novaB)

  • git branch novaB (💡 cria uma branch nova)
  • git checkout novaB (💡 muda para branch escolhida)
  • criar arquivos (💡 crie sua modificações)
  • ⚠️ rodar comando que pedir para subir a branch

Adc novaB na Original

  • git checkout master (💡 volta para branch master ou branch main)
  • git merge novaB (💡 pega as modificações salvas da novaB e adiciona a branch principal)
  • git push (💡 adiciona mudanças na nuvem)

Remove branch

  • git branch -d [branch]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published