我需要一些帮助。我试图将我的一个git-lab分支取到本地文件夹,但它不会发生。我正在解释下面的命令。
subrajyoti@subrajyoti-H81M-S:/opt/lampp/htdocs/cargit/carClinic_correct$ git pull REMOTE challenge_d30_crypto_insecurerandomness_1 -u
但它给了我以下信息。
fatal: 'REMOTE' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
这里我需要获取给定分支内的所有代码。请帮忙。
答案 0 :(得分:0)
REMOTE必须是远程仓库的名称或URL; “origin”如果你已配置它:
git pull origin …
或网址
git pull git@github.com/path/to/repo
/ path / to / repo必须是真实路径。