Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Unified Diff: docs/src/git-freeze.txt

Issue 259863004: Move docs folder to man. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « docs/src/filter_demo_output.py ('k') | docs/src/git-freeze.demo.1.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: docs/src/git-freeze.txt
diff --git a/docs/src/git-freeze.txt b/docs/src/git-freeze.txt
deleted file mode 100644
index 4a53832526fc0b1c50a7bf2b4f20759bee22706a..0000000000000000000000000000000000000000
--- a/docs/src/git-freeze.txt
+++ /dev/null
@@ -1,39 +0,0 @@
-git-freeze(1)
-=============
-
-NAME
-----
-git-freeze -
-include::_git-freeze_desc.helper.txt[]
-
-SYNOPSIS
---------
-[verse]
-'git freeze'
-
-DESCRIPTION
------------
-
-`git freeze` works a lot like `git stash`, in that it stores the current changes
-in your working copy and index 'somewhere'. Unlike `git stash`, `git freeze`
-stores those changes on your current branch. This effectively allows you to
-'pause' development of a branch, work on something else, and then come back to
-exactly the same working state later (by running `git thaw`).
-
-`git freeze` will make up to 2 commits on your branch. A commit with the message
-`FREEZE.indexed` will contain all changes which you’ve added to your index (like
-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
--------
-demo:1[]
-
-SEE ALSO
---------
-linkgit:git-thaw[1]
-
-include::_footer.txt[]
-
-// vim: ft=asciidoc:
« no previous file with comments | « docs/src/filter_demo_output.py ('k') | docs/src/git-freeze.demo.1.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698