Django记录


git push的方法:

git add .
git status //查看git仓库的状态
git commit -m "此次修改操作的名字"
git push

在acapp中添加 .gitignore文件
编辑此文件,可以设置在git push时忽略上传__pycache__

.gitignore文件:

*/__pycache__


  目录