From 2413e9cbad620ca20b3aaffeb9cf4bb132e6113f Mon Sep 17 00:00:00 2001
From: johannst Working areas
+-------------------+ --- stash -----> +-------+
| working directory | | stash | // Shelving area.
-+-------------------+ <-- stash pop -- +-------+
+| (worktree) | <-- stash pop -- +-------+
++-------------------+
| ^
add |
| reset
v |
+-------------------+
| staging area |
+| (index) |
+-------------------+
|
commit
@@ -324,8 +326,39 @@ the same repository (shared .git folder).
Assuming an initial history A - B - C - D
where HEAD
currently points at
+D
, the different reset operations work as shown below.
Soft reset.
+git reset --soft HEAD~2
+
+history: A - B
+ ^HEAD
+
+-> local history is reverted, HEAD moved to B.
+-> changes from C + D are still in the worktree & index (appear as staged changes).
+
+Mixed reset.
+git reset --mixed HEAD~2
+
+history: A - B
+ ^HEAD
+
+-> local history is reverted, HEAD moved to B.
+-> changed from C + D are reverted in the index.
+-> changes from C + D are still in the worktree (appear as unstaged changes).
+
+Hard reset.
+git reset --head HEAD~2
+
+history: A - B
+ ^HEAD
+
+-> local history is reverted, HEAD moved to B.
+-> changes from C + D also reverted in the worktree & index (no pending changes).
git submodule add <url> [<path>] .......... add new submodule to current project
--
cgit v1.2.3