在两台计算机上使用 git(使用 github)
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
克隆后,
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 thegit 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.
要将其从任何计算机上放到 github 上,请使用
push
将其从 github 获取到任何计算机上,请使用pull
To put it on github from any computer use
push
to get it from github to any computer usepull