1. Configurando git
    1. git config
      1. --global user.name "wanderson silva"
      2. --global user.email 'wanderson.luiz@gmail.com'
      3. --global color.ui 'auto'
      4. --global push.default simple
    2. git remote add origin https://github.com/<userName>/<repoName>.git
    3. criar um arquivo .gitignore compatível com seu projeto
  2. Gerenciando versões
    1. Repositório local
      1. git init
      2. git add <FilesNames>
      3. git commit -m '<mensagem>'
        1. git commit --amend -m "new messages here"
      4. git status
      5. git show
        1. <identificador (hashes codes)>
      6. git log
        1. --oneline
          1. --decorate
          2. --all
      7. Deletando arquivos
      8. git mv <arquivo origem> <arquivo destino>
      9. Iniciando seu trabalho
    2. Repositório virtual
      1. git remote add origin https://github.com/try-git/try_git.git
      2. git remote add origin https://wandersonluiz@bitbucket.org/wandersonluiz/raciocinio-financeiro-livro.git
      3. git push -u origin master
      4. git remote set-url origin <https://<nome_usuario>@<endereco>
      5. Crie um arquivo README.md para explicar do que se trata seu projeto
  3. Trabalhando com os outros
    1. git clone
    2. git remote set-url origin <url para colaborar>
    3. git pull
    4. git fetch
    5. Abram o arquivo de conflito
    6. git merge
    7. git diff
      1. --word-diff
        1. <filename (optional)>
      2. <(identificador 1)..(identificador 2)>
      3. <identificador>
      4. --staged
    8. git checkout
      1. <identificador>
      2. HEAD~
        1. -- <filename>
      3. master
  4. Obtendo ajuda
    1. youtube.com/user/github
    2. try.github.io
    3. git help <nome do comando>
  5. Elementos do git
    1. stage/index
    2. HEAD
      1. É um ponteiro que indica no seu repositório a versão vigente
    3. master
    4. origin
      1. The name of remote repo
    5. workspace
    6. branch
    7. merge
    8. Ferramentas úteis
      1. git-gui
      2. guitk
      3. github for windows