git add . 权限错误及远程分支删除

git error:insufficient permission for adding an object to repository database ./object

# 打开项目.git目录,修改所属组为你当前用户所在组,修改所有文件写权限
cd /path/to/repo.git 
sudo chgrp -R groupname .
sudo chmod -R g+rwX .

git 删除远程分支

git branch -a #查看所有分支
git push origin --delete branchname #删除对应分支

添加远程仓库未正确设置连接方式导致每次都要输密码

git remote add coding [email protected]:ArmendLee/filtpointcloud.git
#ssh 格式添加远程仓库
git remote remove coding

你可能感兴趣的:(学习git)