recherche

Maison  >  Questions et réponses  >  le corps du texte

git 如何对单独文件进行 从远端版本库获得更新

用git pull 好像是全部更新,但实际是我第一次pull之后,对本地文件的冲突进行了处理,其中对某一个文件处理错误了,用原来本地的替换使用了,因此此时工作区还没提交;同时git checkout拿到的也是本地版本库上的,此时我使用git pull好像也没拿到远端的那份代码。

高洛峰高洛峰2812 Il y a quelques jours600

répondre à tous(1)je répondrai

  • 大家讲道理

    大家讲道理2017-04-24 09:16:01

    http://stackoverflow.com/questions/3334475/git-how-to-update-checkout-a-single-file-from-remote-origin-master

    git fetch
    git checkout origin/master -- path/to/file
    

    Il est recommandé de rechercher sur Internet des solutions pertinentes avant de soumettre une question afin d'éviter de soulever la même question à plusieurs reprises.

    répondre
    0
  • Annulerrépondre