An introduction where a team can shoot itself in the foot with git OR focus on testdriven system
Classify triangles!
http://www.mathwarehouse.com/geometry/triangles/triangle-types.php
Give three angles, print out which kind of triangle you have:
- A triangle
- Right Triangle
- Equilateral triangle
- Isosceles triangle
- Scalene Triangle
- Acute Triangle
- Obtuse Triangle
Use these issues as you start working, they also include some help to get started.
https://github.com/andershedberg/testdrivengit/issues
How many persons can use git with a single master-branch before it breaks down?
-
x = 1
-
Let x number of people check out the code.
git clone https://github.com/andershedberg/testdrivengit.git
- Let x number of people work on an issue in the issuelist in github.
vi main.py
python main.py
- Let x people commit and push
git add main.py
git commit
git push
-
x = x +1
-
goto 2