A NHLStenden student project in cooparation with an imaginary dutch french coffeeshop that is represented by two of our teachers Gerjan Van Oenen and Bart Oerlemans.
- Joey Krämer (Team leader) Email: joey.kramer@student.nhlstenden.com
- Grzegorz Tomkiel (Co-leader) Email: grzegorz.tomkiel@student.nhlstenden.com
- Lorand Hajos Email: lorand.hajos@student.nhlstenden.com
- Hakan Ege Email: hakan.ege.ozerol@student.nhlstenden.com
- Iarina Dicu Email: iarina.dicu@student.nhlstenden.com
- Andrii Chumakov Email: andrii.chumakov@student.nhlstenden.com
- Lennox James Email: lennox.james@student.nhlstenden.com
- Open your terminal/console
- Navigate to the folder where you have the project files
cd GroupF-term1 - Switch to your branch
- Pull
- Write your code
- Commit, pull, push, create pull request
- Repeat 4.-6. until done
- git checkout YOUR_BRANCH_HERE (keep in mind this will discard all your local changes)
- git add . (This command adds all the files to git)
- git commit -m "YOUR_MESSAGE_HERE" (message is necessary, always give information what you have done)
- git pull (make sure you have the latest version)
- git push (push the commits to GitHub)
- git pull
- Go to the GitHub repository
- Click pull requests
- New pull request
- Click on your branch
- Write a title, a short comment and add Lorand and Joey as reviewers
- Wait for feedback
- Find the hash of you commit from GitHub
- git revert GIT_COMMIT_HASH
- git commit -m "MESSAGE"
- git push
- Make sure you are in your branch
- git fetch origin
- git merge origin/master
- (optional) fix merge conflicts