git deleted everything, how to recover files and folders

后端 未结 3 1482
半阙折子戏
半阙折子戏 2021-01-12 02:25

It was the first time that I was using git, I wanted to import an existing project into github and everything was deleted. After search for an answer I think git deleted the

相关标签:
3条回答
  • 2021-01-12 02:41

    I don't believe you can recover those files and folders if you haven't committed them in the first place. Git can recover anything that you have committed into the repo, but if you didn't commit in the first place, it is not within the repo at all. This is partly the reason why I like to use git within a Dropbox folder.

    0 讨论(0)
  • 2021-01-12 02:42

    As you already have a reference to a dangling tree object, you're well on your way. The following should work: first recover the dangling tree into Git's index:

    git read-tree bfe11a30d57a0233d3b0c840a3b66f6421987304
    

    Next, update your working directory from the now-recovered index:

    git checkout-index -a
    
    0 讨论(0)
  • 2021-01-12 03:03

    Since you've able to run git cat-file -p on the dangling tree object, you should be able to recover it. There are many ways about it, I shall describe 2 that I can quickly think of:

    • Create a new commit to bring-in the files in the dangling tree. This commit will have no parent.

      echo "A commit to recover the dangling tree." | git commit-tree bfe11a30d57a0233d3b0c840a3b66f6421987304
      
      # Output:
      <SOME_NEWLY_CREATED_COMMIT_SHA1>
      

      The new commit should contain the work-tree of the dangling tree that you just found out. The output of the above command should show the new commit SHA1 which was created.

      To switch your current work-tree to this commit:

      git checkout <SOME_NEWLY_CREATED_COMMIT_SHA1>
      

      Now you should be able to see all the files and the contents that were listed in the dangling tree commit. You can browse around, make a backup of the files, do whatever you want ;)

    • Alternative approach:

      If you would like to just get the changes on top of your current commit, this approach might be useful.

      Read the contents of the tree into git's index (i.e. into the staging area for this case).

      git read-tree bfe11a30d57a0233d3b0c840a3b66f6421987304
      

      Now commit the changes in the staging area on top of the currently checked out branch:

      git commit -m "Recover the lost files."
      

    And for the future:

    • Always commit your changes, it is much easier to get to them (using reflogs) even if the commit gets dangling in the future. When in doubt go ahead with a git commit, you can always ammend the commit, make changes, rewrite history, etc. Especially before running commands like git pull or git push, you should be committing your changes so that they do not get lost.

    • Do not run git init twice on a repository, although git is smart enough to know that the repo has already been initialized and tries NOT to overwrite your changes.

    0 讨论(0)
提交回复
热议问题