
GIT
冥焱破晓
邮箱:jinxiangwzh@163.com
展开
-
remote: Incorrect username or password ( access token )
网上都这么说 我试的不管用,是因为理解错误了,这里的用户名密码是gitee账户的用户名密码,不是通过下面命令设置的 git config --global user.name "zhangsan" git config --global user.email "123456@163.com" git config --global user.password "123456"...原创 2020-01-07 09:56:51 · 5027 阅读 · 1 评论 -
git笔记
文件冲突: 使用git status可以查看冲突的文件,使用相应的文件编辑器解决冲突后,需要手动添加文件到本地仓库 如,修改了.gitignore文件,使用git add .命令不好使,需要使用git add .gitignore,然后再提交再push就可以把远程的冲突文件替换掉。 远程仓库已经存在 fatal: remote origin already exists. 因为种种原因,...原创 2018-07-04 17:51:46 · 176 阅读 · 0 评论