作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试使用 Git bash 添加一个很大的 csv 文件。我也克隆了它存在于我的 git bash 中的存储库,它的名称是 origin
.但是我无法将 csv 文件推送到原点。
将 Filename.csv 推送到我的 github 的代码。下面的代码工作正常。
$ git push origin master
$ cd path_of_directory
$ git lfs install
$ git lfs track "*.csv"
$ git add Filename.csv
$ git commit -m "Filename.csv"
$git remote add origin 'https://github.com/Shailaja-Gupta/Marketing-and-Sales-Machine-Learning.git'
$git remote
origin
$ git push origin master
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
$ git push 'https://github.com/Shailaja-Gupta/Marketing-and-Sales-Machine-Learning.git' master
--->ref master:: Error in git rev-list --stdin --objects --not --remotes=https://github.com/Shailaja-Gupta/Marketing-and-Sales-Machine-Learning.git --: exit status 128 fatal: bad object 3cc9272e299e6c7a9cbfe02b36060691f7f86b17
error: failed to push some refs to 'https://github.com/Shailaja-Gupta/Marketing-and-Sales-Machine-Learning.git'
最佳答案
以下步骤对我有用:
$git init
$git add .
$git commit -m 'message'
$git remote add origin 'https://github.com/Shailaja-Gupta/Marketing-and-Sales-Machine-Learning.git'
$ git pull --rebase origin master
$ git push origin master
关于git - 致命的 : Could not read from remote repository. Github 错误:无法将一些引用推送到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61042354/
我是一名优秀的程序员,十分优秀!