在 Windows 上使用 Git-GUI 和 Git-Bash:*.git 文件的位置?
我是 Git 新手,我使用这样的命令将 git 存储库克隆到我的计算机上:
git clone git://git.domain.com/dir1/dir2/myrepo.git
我还尝试在 Windows 上尝试使用 Git-GUI。它询问存储库文件的位置:
我不知道该放什么。我尝试放置 git://git.domain.com/dir1/dir2/myrepo.git,但它显示“不是 Git 存储库”。我在硬盘驱动器上找不到克隆操作放置内容的任何 *.git 文件。如果有什么区别的话,那么仓库实际上是空的。
关于如何填充这个字段有什么想法吗?谢谢。抱歉问了这个“愚蠢”的问题。
I'm new to Git, and I used a command like this to clone a git repo onto my computer:
git clone git://git.domain.com/dir1/dir2/myrepo.git
I'm also trying to experiment with the Git-GUI on windows. It asks for the location of a repo file:
I have no idea what to put here. I tried putting git://git.domain.com/dir1/dir2/myrepo.git
, but it says "not a Git repository". I can't find any *.git file on my hard drive where the clone operation put things. If it makes any difference, the repo is actually empty.
Any ideas on how to populate this field? Thanks. Sorry for the 'dumb' question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需导航到您将其克隆到的文件夹即可。
git 文件存储在名为
.git
的文件夹中,该文件夹位于您克隆到的位置。只需选择您克隆到的文件夹即可开始操作。Just navigate to the folder you cloned it to.
The git files are stored in a folder called
.git
, and that's located in the place you cloned to. Just select the folder you cloned to and you're set to go.