gpt4 book ai didi

git - 推送克隆的存储库时出错

转载 作者:太空狗 更新时间:2023-10-29 14:15:49 25 4
gpt4 key购买 nike

我是 git 的新手,在尝试将克隆的存储库推送到我的在线存储库时遇到了问题。我创建了一个本地存储库,如下所示:

git config --global user.name "My Name"
git config --global user.email myemail
mkdir trash
cd trash
git init
touch test # Creates a file in git bash
git commit -m 'first commit'
git remote add origin git@github.com:user/trash.git
git push -u origin master

然后克隆一个想要的仓库

git clone git@github.com:user/folder.git # Folder appears in my local repository

然后我将它推送到我的项目中:

git add -A
git push -u origin master

打印:“分支主管设置为从源头跟踪远程分支主管。一切都是最新的。”

但是,这并没有将我新克隆的存储库添加到我的在线存储库中。我错过了什么?谢谢,

迈克

编辑:

感谢您的投入——我的问题是我无法在我的本地和在线存储库中获取其他人的存储库(我不知道如何将其克隆到我的本地存储库,然后将其推送到网上)。这是我找到的解决方案:- 转至 https://github.com/user/project- 点击页面右上角的“Fork”。

将您的在线存储库复制(“克隆”)到您的本地机器上:

 # Set up git

git config --global user.name "Your Name"
git config --global user.email your.email

# Clone your project from online to your local repository

cd desiered/directory
git clone git@github.com:username/project.git

最佳答案

你忘记了在 add -A 和 push 之间的提交:

git add -A
git commit -m 'foo'
git push -u origin master

或者你可以做

git commit -am 'foo'
git push -u origin master

关于git - 推送克隆的存储库时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9440420/

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