【Git+Source Tree使用教程之四】Reset

Reset

Here is our current repo:

【Git+Source Tree使用教程之四】Reset_第1张图片  

With the Book has the following:

Annabel Lee
BY EDGAR ALLAN POE 1809-1849
Published in 1849
Update A
Update B
Update C

But we don't like the updates A, B, and C. So, we want to forget them and back to 691923c commit which was for the "added birth & death" commit.

Double click on that commit, then we get the following menu:

【Git+Source Tree使用教程之四】Reset_第2张图片  

Select "Reset master to this commit":

【Git+Source Tree使用教程之四】Reset_第3张图片  

It is set to the default reset (see previous tutorial on Mixed Reset - Default), we have additional type of resets (Soft Reset - (git reset --soft ) or Hard Reset - (git reset --hard )) as shown in the picture below:

【Git+Source Tree使用教程之四】Reset_第4张图片  

If we choose the default reset, we can keep the working copy. So, the Book1 in our working directory looks like this, and it's uncommited status:

Annabel Lee
BY EDGAR ALLAN POE 1809-1849
Published in 1849
Update A
Update B
Update C

The graph should look like this:

【Git+Source Tree使用教程之四】Reset_第5张图片 


原文链接:http://www.bogotobogo.com/cplusplus/Git/Git_GitHub_Source_Tree_4_Reset.php

你可能感兴趣的:(【git,/,svn】)