Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1008 Bytes

File metadata and controls

54 lines (36 loc) · 1008 Bytes

testdrivengit

An introduction where a team can shoot itself in the foot with git OR focus on testdriven system

Task

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

Issues

Use these issues as you start working, they also include some help to get started.

https://github.com/andershedberg/testdrivengit/issues

Shoot the team in the foot with git

How many persons can use git with a single master-branch before it breaks down?

  1. x = 1

  2. Let x number of people check out the code.

git clone https://github.com/andershedberg/testdrivengit.git
  1. Let x number of people work on an issue in the issuelist in github.
vi main.py
python main.py
  1. Let x people commit and push
git add main.py
git commit
git push
  1. x = x +1

  2. goto 2