git clone,“检出文件”阶段被跳过
ubuntu@site3-user03:/projects$ git clone git://git.alsa-project.org/alsa-driver.git
被执行了。 它导致以下输出
Cloning into 'alsa-driver'...
remote: Counting objects: 208801, done.
remote: Compressing objects: 100% (41538/41538), done.
remote: Total 208801 (delta 162528), reused 206283 (delta 160012)
Receiving objects: 100% (208801/208801), 37.00 MiB | 1.53 MiB/s, done.
Resolving deltas: 100% (162528/162528), done.
Checking connectivity... done.
ubuntu@site3-user03:/projects$
但是,由于某些未知原因,克隆过程不包括检出文件:100%(xyz / zyx),完成。
克隆过程通常包括结账到工作空间。 在最终效果中,我的私人叉具有空的工作空间,而且我必须决定分支的位置,这可能并不简单。
ubuntu@site3-user03:/projects/alsa-driver$ git ls-remote origin
a1c6fbc1a65d8a755425d0b56077868148512891 HEAD
1721fb542b00f1c7aebc923732068f403b6062ad refs/heads/build
a1c6fbc1a65d8a755425d0b56077868148512891 refs/heads/master
71b3b2b41dfbdeda78e2e7b62fe2afa8b451fb6e refs/heads/mirror
b044dfe04f636d87fd391b575ba41e495e68e973 refs/heads/release
6386d9e39e6f364698648f4e4741897f83b00121 refs/tags/build/v1.0.1
234b00ebe6e1513c3ce8cdd83999c255bd5516eb refs/tags/build/v1.0.10
f888eb06d4c7af89faa2f9dda189d488312ecb07 refs/tags/build/v1.0.10rc1
e4c4d1037521f536b79f8d145979ec869db353f9 refs/tags/build/v1.0.10rc2
....
many more tags
我的期望是克隆执行基于远程的HEAD的检出,它指向远程的某个提交。
退房阶段可能的原因是什么被跳过了?
在克隆过程中,我正在工作空间中创建小型自述文件。 但是这个文件一直保持不动。 没有计划跟踪该文件。
这个文件的创建是否会干扰克隆过程,因此它不能包含检出阶段?
ubuntu@site3-user03:/projects$ git clone git@git.alsa-project.org:alsa-driver.git alsa-driver
Cloning into 'alsa-driver'...
The authenticity of host 'git.alsa-project.org (77.48.224.243)' can't be established.
RSA key fingerprint is f1:0e:a7:1f:bc:1b:9f:71:00:85:c9:4a:8a:d9:d6:33.
Are you sure you want to continue connecting (yes/no)? no
Host key verification failed.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
ubuntu@site3-user03:/projects$
所以,我放弃了它,因为过去曾经有过简单的克隆过程,而且对确认在未经验证的主机上继续的所有影响没有丝毫的想法。
git help clone
并在那里使用的例子使用URL格式
The following syntaxes may be used with them:
· git://host.xz[:port]/path/to/repo.git/
· http[s]://host.xz[:port]/path/to/repo.git/
...
git clone git://git.kernel.org/pub/scm/.../linux.git my-linux
git clone --reference /git/linux.git
git://git.kernel.org/pub/scm/.../linux.git
my-linux
· Create a bare repository to publish your changes to the public:
git clone --bare -l /home/proj/.git /pub/scm/proj.git
至于以下使用的设置也适用于:
ubuntu@site3-user03:/$ sudo find / -type f -name known_hosts
[sudo] password for ubuntu:
ubuntu@site3-user03:/$
有一次在过去,我和其他克隆有类似的效果。 那一次是MSM SoC的Linux内核公共回购的克隆。 但是,那时克隆过程也会产生类似的消息“无法克隆,因为在远程没有找到???”。 忘了什么? 读。 因此,在最终效果中,我还需要随后手动进行签出以克隆进程。 然而,在这种情况下,这种警告并没有引起alsa-driver公共回购。
我从来没有见过使用用于克隆存储库的URL格式,因为标准应该是: git://git.alsa-project.org:alsa-driver.git
,使用的格式是克隆存储库在裸模式下,就像指定--bare
命令行选项一样,它基本上执行:
制作一个纯粹的Git存储库。 也就是说,不是创建<directory>
并将管理文件放在<directory>/.git
$GIT_DIR
将<directory>
本身$GIT_DIR
。 这显然意味着-n
因为无处检查工作树。 此外,遥控器上的分支头直接复制到相应的本地分支头上,而不会将它们映射到refs/remotes/origin/
。 使用此选项时,不会创建远程跟踪分支和相关配置变量。
如果你看看你想要克隆的项目文档,你会注意到要克隆那个特定的项目,你必须:
git clone git@git.alsa-project.org:alsa-driver.git alsa-driver
cd alsa-driver
git branch build remotes/origin/build
git branch mirror remotes/origin/mirror
git branch release remotes/origin/release
链接地址: http://www.djcxy.com/p/31261.html