diff options
author | johannst <johannst@users.noreply.github.com> | 2022-03-20 21:16:42 +0000 |
---|---|---|
committer | johannst <johannst@users.noreply.github.com> | 2022-03-20 21:16:42 +0000 |
commit | 0cf0869c24bfb00dfd7884f0e40565c2859df3f3 (patch) | |
tree | 51eda79326b399e00b2fe4c56840b8ed26e52f08 /tools/git.html | |
parent | bc55732c55a0c854f6e3c3cc40efd603907ecdcb (diff) | |
download | notes-0cf0869c24bfb00dfd7884f0e40565c2859df3f3.tar.gz notes-0cf0869c24bfb00dfd7884f0e40565c2859df3f3.zip |
deploy: 9b3a0b3c1d7afa35c5eb56a69600af841e0b78b5
Diffstat (limited to 'tools/git.html')
-rw-r--r-- | tools/git.html | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/tools/git.html b/tools/git.html index ce6c876..d4bb610 100644 --- a/tools/git.html +++ b/tools/git.html @@ -153,7 +153,34 @@ <div id="content" class="content"> <main> <h1><a class="header" href="#git1" id="git1">git(1)</a></h1> -<h2><a class="header" href="#staging" id="staging">staging</a></h2> +<h2><a class="header" href="#working-areas" id="working-areas">Working areas</a></h2> +<pre><code class="language-text">+-------------------+ --- stash -----> +-------+ +| working directory | | stash | // Shelving area. ++-------------------+ <-- stash pop -- +-------+ + | ^ + add | + | reset + v | ++-------------------+ +| staging area | ++-------------------+ + | + commit + | + v ++-------------------+ +| local repository | ++-------------------+ + | ^ + push | + | fetch / + | pull + v | ++-------------------+ +| remote repository | ++-------------------+ +</code></pre> +<h2><a class="header" href="#staging" id="staging">Staging</a></h2> <pre><code class="language-markdown"> git add -p [<file>] ............ partial staging (interactive) </code></pre> <h2><a class="header" href="#remote" id="remote">Remote</a></h2> @@ -209,6 +236,8 @@ git show --stat <commit> ................ show files changed by <commit> git show <commit> [<file>] .............. show diffs for <commit> + + git git show <commit>:<file> ............ show <file> at <commit> </code></pre> <h2><a class="header" href="#patching" id="patching">Patching</a></h2> <pre><code class="language-markdown"> git format-patch <opt> <since>/<revision range> |