Mehdi Fanai
Mehdi Fanai

Reputation: 4059

How to go to previous commits in eclipse and egit

I have a git android project managed in eclipse and some times i want to temporarily roll back my android project to a specific time and then build it and do stuff and then restore to the latest version. How is this possible?

Upvotes: 22

Views: 56911

Answers (1)

robinst
robinst

Reputation: 31407

To check out an old state:

  1. Open the History view for the repository (Window > Show view > Other... > Team > History)
  2. Select the commit at the time you want
  3. Context menu > Checkout

When you want to go back, just select the commit where master is (or the branch you were working on before) and select Checkout again. Because there is a branch there, it will automatically check out the branch instead of the commit.

Note that you may also have to enable "Show All Branches and Tags" in the history to see master in the history view, see the section in the user guide about this.

Upvotes: 35

Related Questions