From 0cf0869c24bfb00dfd7884f0e40565c2859df3f3 Mon Sep 17 00:00:00 2001 From: johannst Date: Sun, 20 Mar 2022 21:16:42 +0000 Subject: deploy: 9b3a0b3c1d7afa35c5eb56a69600af841e0b78b5 --- print.html | 42 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) (limited to 'print.html') diff --git a/print.html b/print.html index 074f644..529c6cf 100644 --- a/print.html +++ b/print.html @@ -896,7 +896,34 @@ y yank selected text list-keys -t vi-copy list keymaps for vi-copy mode

git(1)

-

staging

+

Working areas

+
+-------------------+ --- stash -----> +-------+
+| working directory |                  | stash |  // Shelving area.
++-------------------+ <-- stash pop -- +-------+
+      |       ^
+     add      |
+      |     reset
+      v       |
++-------------------+
+|   staging area    |
++-------------------+
+      |
+    commit
+      |
+      v
++-------------------+
+| local repository  |
++-------------------+
+      |       ^
+     push     |
+      |     fetch /
+      |      pull
+      v       |
++-------------------+
+| remote repository |
++-------------------+
+
+

Staging

  git add -p [<file>] ............ partial staging (interactive)
 

Remote

@@ -952,6 +979,8 @@ list-keys -t vi-copy list keymaps for vi-copy mode 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>

Patching

  git format-patch <opt> <since>/<revision range>
@@ -1515,6 +1544,17 @@ gpg --verify <file>.asc <file>
           <bp_list>: Space separates list, eg 'command 2 5-8' to run command
           for breakpoints: 2,5,6,7,8.
 
+

Watchpoints

+
  watch [-location|-l] <expr> [thread <tnum>]
+          Create a watchpoint for <expr>, will break if <expr> is written to.
+          Watchpoints respect scope of variables, -l can be used to watch the
+          memory location instead.
+  rwatch ...
+          Sets a read watchpoint, will break if <expr> is read from.
+  awatch ...
+          Sets an access watchpoint, will break if <expr> is written to or read
+          from.
+

Inspection

  info functions [<regex>]
           List functions matching <regex>. List all functions if no <regex>
-- 
cgit v1.2.3