How to revert project back to a previous commit in android studio

I am working on a project in android studio and would like to revert to a previous push. I attempted
VCS => Git => Reset Head (Hard)
but my project in Android Studio is unchanged, likely because I'm doing something wrong. I would like to revert the project in Android Studio to a specific earlier commit that I've pushed and I see on github. I do not care about any changes that I have made since the earlier push.
Additionally, I would like this to be done through the GUI within Android Studio if possible.


Android Studio Instructions : if you want to do this in Android Studio, press alt + 9 to open the Version Control panel. Switch to the Log tab and right click on a previous commit. Select Checkout Revision .


Command line instructions : Open the command line tool you are using. Go to the Android app's Git directory (using cd ). Execute git log and find the previous commit you want to revert to.

commit 7c247be6d8975dc88f6cc2631c154786a1f3b79e
Author: John Doe <john@doe.ca>
Date:   Fri Jun 11 22:37:35 2015 -0400

    Some helpful commit message should be here.

If that is the commit you want to revert to, then execute git checkout 7c247b .


图像中由红色矩形包围的图标可以实现这一功能


Android Studio -> Version Control -> Select your commit -> Right panel -> Select you want to be reverted file.

在这里输入图像描述

Then you can get the new reverted change, commit -> done.

链接地址: http://www.djcxy.com/p/18816.html

上一篇: 如何从拉取请求中移除提交

下一篇: 如何将项目恢复到之前在android studio中的提交