├── help.txt ├── branch.py ├── README.md └── hello.py /help.txt: -------------------------------------------------------------------------------- 1 | This is exmplain how to use git 2 | -------------------------------------------------------------------------------- /branch.py: -------------------------------------------------------------------------------- 1 | for i in range(40): 2 | print "SOS %d" %i 3 | print "Done" 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # git_course 2 | This is the learning course that begin in 3.16 3 | -------------------------------------------------------------------------------- /hello.py: -------------------------------------------------------------------------------- 1 | num=0 2 | while num < 10: 3 | print "Hello World" 4 | num=num+1 5 | print "Done" 6 | print "This is the second add" 7 | --------------------------------------------------------------------------------