Index: git_docs/git-freeze.txt |
diff --git a/git_docs/git-freeze.txt b/git_docs/git-freeze.txt |
index 62f6bf4a6a2d841e6877eb3ecadfd5cc95f49013..4aaa7e18259669af97190c19932858071b121ae9 100644 |
--- a/git_docs/git-freeze.txt |
+++ b/git_docs/git-freeze.txt |
@@ -3,7 +3,8 @@ git-freeze(1) |
NAME |
---- |
-git-freeze - Freeze all changes on a branch (indexed and unindexed) |
+git-freeze - |
+include::_git-freeze_desc.helper.txt[] |
SYNOPSIS |
-------- |
@@ -25,8 +26,57 @@ with 'git add', 'git mv', 'git rm', etc.). A commit with the message |
`FREEZE.unindexed` will contain all changes which were not in your index at the |
time you ran git freeze (freshly modified files, new files, etc.). |
+EXAMPLE |
+------- |
+ |
+[subs="specialcharacters,quotes,attributes"] |
+---- |
+[white]**$ git status --short** |
+[green]##A## added_file |
+[green]##A##{zwsp}[red]##M## added_file_with_unstaged_changes |
+[green]##D## deleted_file |
+ [red]##M## modified_file |
+ [red]##D## unstaged_deleted_file |
+[red]##??## unadded_file |
+[white]**$ git freeze** |
+[white]**$ git status --short** |
+[white]**$ git log -n 2 --stat** |
+[yellow]##commit 182eccae8e385acba21c9ff2713e98ff4b7e17cd## |
+Author: Robert Iannucci <iannucci@chromium.org> |
+Date: Thu Mar 13 17:42:37 2014 -0700 |
+ |
+ FREEZE.unindexed |
+ |
+ added_file_with_unstaged_changes | 3 [green]##\+\+##{zwsp}[red]##-## |
+ modified_file | 4 [green]##\+\+\+##{zwsp}[red]##-## |
+ unadded_file | 3 [green]##\+\+\+## |
+ unstaged_deleted_file | 1 [red]##-## |
+ 4 files changed, 8 insertions(\+), 3 deletions(-) |
+ |
+[yellow]##commit ce07bdc49a61f54e6142b4bba5cc517cf6802bd4## |
+Author: Robert Iannucci <iannucci@chromium.org> |
+Date: Thu Mar 13 17:42:37 2014 -0700 |
+ |
+ FREEZE.indexed |
+ |
+ added_file | 3 [green]##\+\+\+## |
+ added_file_with_unstaged_changes | 1 [green]##\+## |
+ deleted_file | 1 [red]##-## |
+ 3 files changed, 4 insertions(+), 1 deletion(-) |
+[white]**$ git thaw** |
+[white]**$ git status --short** |
+[green]##A## added_file |
+[green]##A##{zwsp}[red]##M## added_file_with_unstaged_changes |
+[green]##D## deleted_file |
+ [red]##M## modified_file |
+ [red]##D## unstaged_deleted_file |
+[red]##??## unadded_file |
+---- |
+ |
SEE ALSO |
-------- |
linkgit:git-thaw[1] |
include::_footer.txt[] |
+ |
+// vim: ft=asciidoc noexpandtab: |