将新创建的文件推送到git repository

时间:2016-07-06 07:44:00

标签: linux git push

我创建了一个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的新手,所以会很感激建议。

3 个答案:

答案 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"

http://training-course-material.com/images/thumb/8/8d/Git-commit-a2.png/250px-Git-commit-a2.png

IE中。没有偏远的起源&#39;推动本地git回购。

章节&#34; Git Basics - Recording Changes to the Repository&#34;是一个好的开始。

git add myNewFile
git commit -m "Add a new file"

答案 1 :(得分:1)

您似乎对@drawable/YOUR_XML_FILE_NAME命令有错误的理解,请阅读下图,这将为您提供更清晰的概念。

enter image description here

答案 2 :(得分:1)

  1. 验证您是否已签出存储库分支(您正在使用它)。
  2. 确保首先提取更新

  3. 执行'git add newfileNameWithPath'并在推送之前提交。