On Tue, Dec 16, 2014 at 7:39 PM, Arup Rakshit <aruprakshit@xxxxxxxxxxxxxx> wrote: > Hi, > .. > > But I am looking for any differences - > > a) git reset --soft and git reset --keep git reset --keep is a safer version of git reset --hard. It will reset the working tree. but will abort when it has to overwrite uncomitted changes. > b) git reset --hard and git reset --merge git reset --merge does the same as hard, but keeps unstaged changes. When unstaged changes would need to be overwritted, it also aborts. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html