git报错

Git 初学使用

孤街浪徒 提交于 2021-01-12 20:35:02
git init 产生的目录解释 error: src refspec master does not match any. 引起该错误的原因是,目录中没有文件,空目录是不能提交上去的 error: insufficient permission for adding an object to repository database ./objects 服务端没有可写目录的权限 错误提示:fatal: remote origin already exists. 解决办法:$ git remote rm origin 错误提示:error: failed to push som refs to ........ 解决办法:$ git pull origin master //先pull 下来 再push 上去 git init //在当前项目工程下履行这个号令相当于把当前项目git化,变身! git add .//把当前目次下代码参加git的跟踪中,意思就是交给git经管,提交到本地库 git add <file> //把当前文件参加的git的跟踪中,交给git经管,提交到本地库 git commit -m “…”//相当于写点提交信息 git remote add origin git@github.com:ellocc/gittest.git /