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
      5. git config format.pretty oneline
    2. git remote add origin https://github.com/<userName>/<repoName>.git
    3. .gitignore
  2. Trabalhando sozinho
    1. Repositório local
      1. git init
      2. git clone <usuário@servidor:/caminho/para/o/repositório>
      3. git add <FilesNames>
        1. git rm --cached <FilesNames>
        2. git reset HEAD <filesNames>
      4. git commit -m '<mensagem>'
        1. git commit --amend -m "new messages here"
      5. git status
      6. git show
        1. <identificador (hashes codes)>
      7. git log
        1. --oneline
          1. --decorate
          2. --all
      8. Deletando arquivos
      9. git mv <arquivo origem> <arquivo destino>
      10. 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. Começando do começo
    1. Por que versionar?
    2. nomeclatura
      1. workspace
      2. stage/index
      3. HEAD
      4. master
      5. origin
      6. branch
      7. merge
    3. Ferramentas úteis
      1. git-gui
      2. guitk
      3. github for windows
    4. Obtendo ajuda
      1. youtube.com/user/github
      2. try.github.io
      3. git help <nome do comando>
      4. guia prático