git push的方法:
git add .
git status //查看git仓库的状态
git commit -m "此次修改操作的名字"
git push
在acapp中添加
.gitignore
文件
编辑此文件,可以设置在git push时忽略上传__pycache__
.gitignore
文件:
*/__pycache__
git push的方法:
git add .
git status //查看git仓库的状态
git commit -m "此次修改操作的名字"
git push
在acapp中添加
.gitignore
文件
编辑此文件,可以设置在git push时忽略上传__pycache__
.gitignore
文件:
*/__pycache__