suchen

Heim  >  Fragen und Antworten  >  Hauptteil

git如何回退单个文件误删

在公司误删了某个文件,已经提交到远程版本库,现在想将该文件找回来,其他改动不变,有什么办法?

PHPzPHPz2806 Tage vor1194

Antworte allen(5)Ich werde antworten

  • 黄舟

    黄舟2017-05-02 09:53:46

    很简单,你知道在哪个提交中有,就用

    git checkout xxxxx lost_file

    就可以了。这里xxxx就是git 库中的sha-1 号。

    Antwort
    0
  • 大家讲道理

    大家讲道理2017-05-02 09:53:46

    切到前一个commit,复制误删的文件,然后新建分支粘贴提交。

    Antwort
    0
  • ringa_lee

    ringa_lee2017-05-02 09:53:46

    git stash pop 也可以试试

    Antwort
    0
  • 某草草

    某草草2017-05-02 09:53:46

    查看commit_id
    git log $filename
    重置文件
    git reset $commit_id
    恢复文件
    git checkout $filename

    Antwort
    0
  • 習慣沉默

    習慣沉默2017-05-02 09:53:46

    从本地删除文件的前一个提交id拿回丢失的文件或者从远端拿回也行,然后add,commit,再次push到远端,意思就是会多产生一次提交和推送,拿回文件就是一楼大答案,git checkout 提交id -- 删除文件路径

    Antwort
    0
  • StornierenAntwort