distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Git is easy to learn and has a tiny footprint with lightning fast performance.
distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Git is easy to learn and has a tiny footprint with lightning fast performance. distributed?
line • Limit the subject line to 50 characters • Capitalize the subject line • Do not end the subject line with a period • Use the imperative mood in the subject line • Wrap the body at 72 characters • Use the body to explain what and why vs. how
naar je eigen github account • git clone [eigen github account]/practicalgit.git • cd practicalgit • Maak een feature branch, zet je naam in de README.md • Commit je wijzigingen en push je feature branch naar je eigen repo • Ga naar https://github.com/mdeletter/practicalgit en maak een Pull Request aan
branch aan: feature/a • Voeg de tekst ‘A’ op regel 2 van de README.md • Commit de wijzigingen • Maak een 2e branch aan: feature/b vanaf master • Voeg in deze branch ook op regel 2 de tekst ‘B’ toe en commit de wijzigingen • git checkout master, en merge eerst feature/a en vervolgens feature/b terug
voeg 1 regel toe in de README.md, commit deze wijziging. • Doe dit 5 keer, zodat je 5 commits heb in deze branch. • Pas de commit history aan, zodat je 2 commits overhoud (samenvoegen). • git rebase -i HEAD~5