我想从远程仓库中获取对象,但不更新任何本地引用。(是的,我知道这是一个相当不寻常的案例。)
我看到我可以将 refspec 传递给git fetch
,但是当我传递一个空的 ( git fetch my-remote ''
) 时,它似乎默认为其他东西,因为我收到以下错误:
fatal: Couldn't find remote ref HEAD
fatal: The remote end hung up unexpectedly
有没有办法指定“空”参考规范?
我想从远程仓库中获取对象,但不更新任何本地引用。(是的,我知道这是一个相当不寻常的案例。)
我看到我可以将 refspec 传递给git fetch
,但是当我传递一个空的 ( git fetch my-remote ''
) 时,它似乎默认为其他东西,因为我收到以下错误:
fatal: Couldn't find remote ref HEAD
fatal: The remote end hung up unexpectedly
有没有办法指定“空”参考规范?