我创建了一个linux目录的git存储库,并将所有文件都压入其中。我最近将一个新文件移动到该linux目录中,现在想将这个新文件推送到它的git存储库中。我想通过输入
来做到这一点 git push origin master
在命令行中,但我收到错误:
fatal: 'origin' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
有谁知道如何将新文件推送到文件所在文件夹的现有git仓库中?我是git的新手,所以会很感激建议。
答案 0 :(得分:1)
如果您的文件已经在您创建的git仓库中,则添加和提交就足够了:无需推送。
myrepo <== "I have created a git repository of a linux directory"
.git (the .git folder is the git repo referential)
myNewfile <== "I have recently moved a new file into that linux directory"
IE中。没有偏远的起源&#39;推动本地git回购。
章节&#34; Git Basics - Recording Changes to the Repository&#34;是一个好的开始。
git add myNewFile
git commit -m "Add a new file"
答案 1 :(得分:1)
答案 2 :(得分:1)
确保首先提取更新
执行'git add newfileNameWithPath'并在推送之前提交。