在两台计算机上使用 git(使用 github)

发布于 2024-12-20 00:58:38 字数 289 浏览 1 评论 0原文

我有一个 python 项目,今天我决定将其放在 github 上。 我是新手。我看到几个教程。除了我想做的一件事之外,所有工作都很好:

白天我在笔记本电脑上编码,回家后我在计算机上继续工作。现在,我在笔记本电脑上创建一个存储库,然后将其推送到我的笔记本电脑上。 github。当我回到家使用计算机时,我克隆了存储库以继续处理代码。但是当我再次将它推到 github 上时,一切工作正常,除了我不知道如何再次将它“下载”到我的笔记本电脑上以便第二天继续工作。

我唯一能找到的就是“挑选”。我不知道这是否正确以及在这种情况下如何处理。

I'have a python project and I decide today put it on github.
I'm newbie with that. I see several tutorial. All work fine exept a thing I want to do:

I'm coding on my laptop in the day and on my computer I continue the work when I come back home.For now I create a repo on the laptop and I push it on my github. When I come back home on my computer I did a clone of the repo to continue working on the code. But when I push it on github again , all work fine exept I don't know how to "download" it on my laptop again to continue working in the next day.

The only things I find is to make a "cherry pick". I don't know if it's correct and how to process in this situation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

零度℉ 2024-12-27 00:58:38

克隆后,git pull 将使用克隆的存储库中的最新版本更新您的本地副本。请参阅 git pull手册的部分以获取更多信息。

git gui 更新:
我鼓励您学习 bash 和 git 的命令行界面,除了非常有用之外,还更容易找到对它们的支持。

查看 git gui tour 的“从远程服务器拉取”部分,看起来拉动涉及添加远程(可能已经完成),然后选择远程 -> 获取 -> 存储库名称

After you've cloned, git pull will update your local copy with the latest from the repository it was cloned from. See the git pull section of the manual for more information.

Update for git gui:
I encourage you to learn bash and the command-line interface for git, apart from being incredibly useful, it's easier to find support for them.

Looking at the "Pulling from a Remote Server" section of the git gui tour, it appears that pulling involves adding a remote (perhaps already done) and then selecting Remote -> fetch from -> repository name.

滴情不沾 2024-12-27 00:58:38

要将其从任何计算机上放到 github 上,请使用 push 将其从 github 获取到任何计算机上,请使用 pull

To put it on github from any computer use push to get it from github to any computer use pull

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文