Git 记录使用中出现的问题
nothing to commit, working tree clean
因为你的文件并没有发生没有更新,所以有这个提示,随便修改一下,再提交就OK了
转自 https://blog.csdn.net/ForJayChou/article/details/125551333
参考 https://blog.csdn.net/woruosuifenglang/article/details/120196393
error: remote origin already exists.
提示当你在git push到GitHub的时候报错出现 error: remote origin already exists. 翻译过来呢就是 错误:远程源已经存在
解决方案
1. 查看远程库的信息: git remote -v
2. 删除现有的远程仓库: git remote rm origin
3. 建立新的远程仓库地址: git remote add origin + 远程仓库地址
转自https://blog.csdn.net/Lovely_red_scarf/article/details/125760091
error: pathspec 'master' did not match any file(s) known to git
在本地 init 一个仓库,然后创建一个 develop 分支,并在这个分支上进行文件操作,接着 commit 所做的修改,
然后要切到 master 主分支上,这时就会出现上面的错误
解决方法
在初始化一个仓库后,先在 master 分支上进行一些 commit 操作,比如增加一个 README.md 文件,这样就真正创建了一个 master 分支
转 https://blog.csdn.net/benben_2015/article/details/82867345
Git.bash:Please make sure you have the correct access rights and the repository exists.
问题: 请确保您有正确的访问权限,并且存储库已经存在
https://blog.csdn.net/qq_40695970/article/details/122361527
not valid: could not determine hash algorithm; is this a git repository?
好像是因为 github 访问不了
解决方法,修改本地 windows git 网站凭证就行
20240821