gpt4 book ai didi

git - 刚刚在我的电脑上创建了一个 Git 仓库。如何将 repo 放到 GitHub 中?

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

我是 Git 新手。我刚刚在我的计算机上创建了一个 Git 存储库。现在我想将该存储库连接到网站 (GitHub) 并将我的代码推送到那里。

我该怎么做?我有点熟悉......我必须以某种方式将在线代码设置为我的pc版本的上游或下游,然后对上游或下游在线版本进行提交或推送或 pull ......

我需要使用 Pycharm 将它推送或 pull 到 GitHub...(但是从 Git 命令行很好...)

最佳答案

让我们首先不要假设您的远程位置(就是这个词!)。

以下是我认为您已经完成的一些步骤

在 (a) 终端中:

cd "/path/name/to/repo/folder" # this folder should/ can contain all of your files and folders for the project
git init # initialize the repository
git add * # add everything (the * is like in a reg ex)
git commit -m "have to make a first commit"

也许是您要找的东西

git remote add origin https://example.com/userName/repoName
git push -u origin master

所以用户名会类似于“bordeo”。 “site.com”可能是“github.com”。

例如,转到 GitHub.com 并创建该存储库。然后复制链接插入git remote add origin之后。


如果你碰巧真的想克隆一个远程仓库(即,它已经存在于 GitHub 上,你想要它在你的本地机器上,并让你的本地机器设置为推送到GitHub),那么您可以执行以下操作:

将您的目录(使用 cd)更改为将包含 存储库文件夹的文件夹(因此,如果您想要 foo/MyRepocdfooMyRepo 文件夹将在下一个命令中创建),然后执行 git clone https://github.com/用户名/MyRepo

关于git - 刚刚在我的电脑上创建了一个 Git 仓库。如何将 repo 放到 GitHub 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34111474/

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