Skip to content

Instantly share code, notes, and snippets.

View evertonmota's full-sized avatar

Everton Mota evertonmota

View GitHub Profile

Keybase proof

I hereby claim:

  • I am evertonmota on github.
  • I am mcostagt (https://keybase.io/mcostagt) on keybase.
  • I have a public key ASAeRg7XHhIpQBFMvs5Dl0TdRRXj91VlFEEq6wPI6qH54Qo

To claim this, I am signing this object:

@evertonmota
evertonmota / pull-request-process.md
Last active December 28, 2018 18:39 — forked from alexruzenhack/pull-request-process.md
Processo de Pull Request #git #pullrequest
  1. Criar nova branch com as alterações realizadas na base do código
    • git checkout -b <branch name>
  2. Adicionar alterações na staging area
    • git add <. para adicionar tudo | path endereço do arquivo>
  3. Criar um commit descritivo da tarefa realizada, dos arquivos alterados
    • git commit -m "Descrever atividade"
  4. Puxar alterações da master para o repositório local
    • git pull origin master
  5. Atualizar a branch com as alterações da master, se existirem alterações
  • git merge master