作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我已经创建了一个 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 的新手,所以非常感谢您的建议。
最佳答案
如果您的文件已经在您创建的 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"
即。对于本地 git 仓库,没有可推送到的远程“来源”。
章节“Git Basics - Recording Changes to the Repository”是一个很好的起点。
git add myNewFile
git commit -m "Add a new file"
关于linux - 将新创建的文件推送到 git 存储库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38218705/
我是一名优秀的程序员,十分优秀!