day21 git & github + Celery 分布式任务队列

参考博客:

git & github 快速入门
http://www.cnblogs.com/alex3714/articles/5930846.html

 1 git@github.com:liyongsan/git_class.git
 2 
 3 We recommend every repository include a README, LICENSE, and .gitignore.
 4 …or create a new repository on the command line
 5 
 6 echo "# git_class" >> README.md
 7 git init
 8 git add README.md
 9 git commit -m "first commit"
10 git remote add origin git@github.com:liyongsan/git_class.git
11 git push -u origin master
12 …or push an existing repository from the command line
13 
14 git remote add origin git@github.com:liyongsan/git_class.git
15 git push -u origin master
16 …or import code from another repository
17 You can initialize this repository with code from a Subversion, Mercurial, or TFS project.
Git README

Celery 分布式任务队列快速入门
http://www.cnblogs.com/alex3714/p/6351797.html

原文地址:https://www.cnblogs.com/liyongsan/p/7045450.html