django 购物系统 - 代码传到github

注册github账号

Create a new repository

项目主目录下

git init
git config --global user.email [email protected]"
git config --global user.name "valexchao"  
echo "# shopsys" >> README.md
git add .
git commit -m "first commit"
git remote add origin https://github.com/valexchao/test.git
git push -u origin master

-end-

你可能感兴趣的:(django,购物系统)