您的位置:首页 > 编程语言

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

2017-06-18 21:28 399 查看
参考博客:

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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: