Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是新手,所以这个问题听起来可能很愚蠢,但是在 Windows 上使用 Git Shell 从 Git Hub 中提取的命令是什么?非常感谢。我做了一些研究,但我真的不明白。
这是我在 Git Shell 中输入的内容:
git pull github.com/A/B.git
执行 a git clone https://github.com/user/repo.git,然后您可以git pull在后续运行时从 repo 中执行 a 。
git clone https://github.com/user/repo.git
git pull
基本上,在执行pull之前,repo 必须在本地存在,因此您必须先克隆它。