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

来源:互联网 发布:淘宝股票代码 编辑:程序博客网 时间:2024/05/21 17:49
Reset

Here is our current repo:

initial_repo.png 

With the Book has the following:

Annabel LeeBY EDGAR ALLAN POE 1809-1849Published in 1849Update AUpdate BUpdate 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:

initial_repo.png 

Select "Reset master to this commit":

SureDialog.png 

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 <SHA key>) or Hard Reset - (git reset --hard <SHA key>)) as shown in the picture below:

Soft_Mixed_Hard.png 

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 LeeBY EDGAR ALLAN POE 1809-1849Published in 1849Update AUpdate BUpdate C

The graph should look like this:

AfterResetGraph.png 


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

0 0