my first python study project
工程代码编写基于Python2.7
##关联本地代码到远程仓库
- cd /xxx/xxx/firstPyProject
- git init
- git add utils/ exercise/ network/
- git commit -m 'first commit'
- git remote add origin https://github.com/nleisure/firstPyProject.git
- git pull origin master --allow-unrelated-histories
- git push origin master