gpt4 book ai didi

git - 问题推送到使用 "Initialize repo with a README"选项创建的 GitHub 存储库

转载 作者:IT王子 更新时间:2023-10-29 00:58:50 26 4
gpt4 key购买 nike

我尝试使用 the instructions in the GitHub documentation 创建 GitHub 存储库, 除了在本地制作 README 之外,我使用 README 选项初始化了我的 GitHub 存储库。但是,在尝试推送之后,我得到了这个我不完全理解的错误:

kirby:cs61as_SCIP_schython \**user**$ git push origin master
https://github.com/chris-marie/cs61as_SICP_schython.git
! [rejected]
master -> master (fetch first) error: failed to push some refs to
'https://github.com/chris-marie/cs61as_SICP_schython.git' hint:
Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository
pushing hint: to the same ref. You may want to first merge the remote
changes (e.g., hint: 'git pull') before pushing again. hint: See the
'Note about fast-forwards' in 'git push --help' for details.

我也无法 pull 存储库,所以我尝试手动下载、添加和提交我虚拟创建的 README 文件并尝试再次推送,但出现了一个新错误:

kirby:cs61as_SCIP_schython \**user**$ git push origin master
https://github.com/chris-marie/cs61as_SICP_schython.git
! [rejected]
master -> master (non-fast-forward) error: failed to push some refs to
'https://github.com/chris-marie/cs61as_SICP_schython.git' hint:
Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git
pull') hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

这给我留下了四个问题:

1.. 为什么用 README 初始化 GitHub 上的远程存储库,然后尝试将 GitHub 存储库与先前存在的本地存储库连接起来不起作用?

  1. 为什么我尝试修复此错误时无法 pull ?

  2. 为什么我手动将 GitHub 中的 README 添加到我的本地存储库后,仍然无法推送和初始化与我的 GitHub 远程连接?

  3. 如何使用初始化的 README 创建 GitHub 存储库并将其连接到本地存储库, 不会导致这些错误?

最佳答案

错误是说你的仓库有你还没有的更改,因为你在设置它时将 README 添加到远程仓库。如果你已经有本地更改或本地仓库,你需要在 Github 上初始化一个空仓库,然后你可以推送。不过,您必须添加远程,例如 git remote add https://github.com/username/repo.git

手动下载 README 并添加和提交可能会产生不同的提交 ID,并将其放在提交历史中的不同点,这就是为什么它不会被检测为相同的。

1) Why does it not work to initialize a remote repository on github with a README, and then try to connect the github repo with a previously existing existing local repo?

当 Github 添加 README 时,它会提交它,然后这是第一次提交。如果您有本地存储库,则本地的第一次提交会有所不同,因此它们不会匹配。

2) Why could I not pull when I tried to fix this error?

可能是因为上述原因,或者 remote 引用没有正确添加,具体取决于您添加它的方式。

通常,如果您首先在本地创建,您会:

# Set up the Git repo locally, with no commits in it.
git init
# Add a new file.
git add file1
# Commit the change.
git commit
# Tell Git where your remote is.
git remote add origin https://github.com/user/repo.git
# Push the default 'master' branch to the above remote called 'origin'.
git push origin master

或者如果它已经存在于 Github 或不同的远程服务器上:

# Download the existing repo, with all of the history.
git clone https://bitbucket.org/user/repo.git
# Add a new file or modified file.
git add file1
# Commit the change.
git commit
# Push to the remote that you downloaded from with clone on branch master.
git push origin master

3) Why could I still not push and initialize the connection to my github remote after I added the README from github to my local repository manually?

这不是 Git 的更改方式;它们是一个链中顺序提交的大列表。每个提交都有一个或两个父提交,并且提交 ID 也不连续。

有关分支和提交的一些图表,请参阅 Git 网站:http://git-scm.com/book/en/Git-Branching-What-a-Branch-Is

4) How do I create a github repo with an initialized README and connect it to a local repo WITHOUT causing the errors below?

如果你有一个现有的本地仓库,你不应该用初始化的自述文件创建一个。如果创建时在 Github 上为空白,则可以毫无错误地推送现有存储库。如果它有 README,您必须 git clone Github 存储库,然后将您的更改添加到该文件夹​​,提交更改,然后推送。添加 README 是为了当您有一个新项目并且您首先创建 Github 存储库,然后克隆该项目并开始在该位置工作时。如果您在本地已有存储库,请不要使用该选项。

关于git - 问题推送到使用 "Initialize repo with a README"选项创建的 GitHub 存储库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23304688/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com