Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Git and GitHub: How we work at ContaAzul

Git and GitHub: How we work at ContaAzul

Talk about how we work at ContaAzul with Git and GitHub in changelog meetup (https://changelog.xyz/)

Roberto Duessmann

April 25, 2018
Tweet

More Decks by Roberto Duessmann

Other Decks in Programming

Transcript

  1. Topics Why GitHub? Issues & Team management Fork & Commit

    & Push Pull request & Code review Merge & Deploy (CI/CD)
  2. Fork & Commit & Push git clone [email protected]:{git user}/ContaAzul.git cd

    ContaAzul git remote add upstream [email protected]:ContaAzul/ContaAzul.git git fetch upstream
  3. Fork & Commit & Push git checkout -b hotfix-invoice [

    ... ] git diff git add . git commit -m "Add fix to invoice issue" git push origin hotfix-invoice
  4. ?