Mini-curso sobre Git & GitHub
Aprenda o básico em menos de 2 horas! (gratuito)
Abaixo você encontrará um mini-curso que foi originalmente gravado para os alunos
do meu curso). O objetivo é aprender o
básico do Git (ferramenta) e do GitHub (plataforma).
Parte 1
Parte 2
Parte 3
Parte 4
Parte 5
Parte 6
Como instalar o Git
O processo de instalação do Git é simples, basta seguir as instruções do site oficial:
- Windows: git-scm.com/download/win
- Linux/Unix: git-scm.com/download/linux
- macOS (se você tiver Homebrew instalado):
$ brew install git
- macOS (sem usar o Homebrew): git-scm.com/download/mac
Criar uma conta no GitHub:
Configurar seu nome de usuário no Git:
Autenticar no GitHub:
Comandos usados nas videoaulas:
git init
git add README.md
git status
git commit -m "Create README.md"
git log
git diff README.md
git revert [hash]
git show
git push
git checkout -b nova_funcionalidade
git branch
git branch -a
git checkout nova_funcionalidade
git checkout master