零、所用环境
Ubuntu
码云
一、关联仓库
1. 在本地目录下关联远程仓库
git remote add origin 项目代码托管平台链接
2. 取消关联远程仓库
git remote remove origin
二、保存用户名密码
1. 进入到项目目录
2. 修改.git/config
vim .git/config
加入如下代码
[credential]
helper = store
3. 登录一次后,后面将自动登录(ssh下,断开重连生效)
三、忽略某些文件
1. 忽略某些文件
git rm -rf —cached filename
2. 通过.gitignore忽略某些文件
vim .gitignore
git rm -r --cached .
git add .
git commit -m 'update .gitignore'
git push origin master
常用.gitignore忽略文件见附1
参考Git忽略提交规则 - .gitignore配置运维总结
附1 常用.gitignore忽略文件
"""
migrations/
__pycache__/
.idea/
*.pyc
.idea/workspace.xml
*.json
.gitignore
*.ini
*.conf
config.py
*.json
"""
网友评论