// Aula 11 - Criação de um novo repositório https://github.com/settings/keys # ssh-keygen -t rsa -b 4096 -C "seunome@example.com" # cat /root/.ssh/id_rsa.pub # mkdir -p ~/github-teste # cd /github-teste # echo "# github-teste" >> README.md # git init # git add README.md # git commit -m "primeiro commit" # git remote add origin git@github.com:Username/github-teste.git # git push -u origin master # git log # git show 351b33bd7380a2434aaaea91eb8cb0ddc3b56852 # git checkout -b add_description # echo "\n## Description\n\nGitHub para teste" >> README.md # git add README.md # git commit -m "Adicionar cabeçalho de segundo nível ao arquivo README" # git push origin add_description # git checkout master # git branch new_feature # git push origin new_feature https://github.com/Username/github-teste/branches