giorgiosaints
10/21/2016 - 5:56 PM

GitHub Snippet

Git Quick Comands

Criando um novo repositório

    git init

Obtenha um repositório

    git clone /caminho/para/o/repositório

Adicionar & Commitar:

  • Propor mudanças:
    git add caminho/do/arquivo.html or git add .
  • Fazer o commit:
    git commit -m "comentários das alterações"

Enviando Alterações

    git push origin master

Editando o usuário por projeto

    git config user.email "SEUEMAIL@gmail.com"

Ramificando

  • Criar uma nova branch:
    git checkout -b the_branch
  • Retorne para o master:
    git checkout master
  • Remover a branch:
    git branch -d the_branch
  • Criar a branch de fato:
    git push origin the_branch
  • Listar branches locais:
    git branch

Atualizar & Mesclar

  • Atualizar:
    git pull origin master
  • Merge, levando em conta que você está na branch master:
    git merge the_branch
  • Deletando localmente e remotamente uma branch:
    git branch -d the_local_branch
    git push origin --delete the_remote_branch

Salvando suas credênciais no git

    git config credential.helper store
    git fetch
    username: adas
    password: asdasd

Git Checkout HARD

    git clean -fd