File tree Expand file tree Collapse file tree 1 file changed +19
-2
lines changed Expand file tree Collapse file tree 1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -598,10 +598,27 @@ git config --add remote.[upstream].fetch ""+refs/pull/*/head:refs/remotes/[upstr
598
598
599
599
## Git Notes
600
600
### Summary
601
- * Supplemental commits
601
+ * Supplements commit message and description
602
602
* Parallel graph
603
- * Not cryptographically as truthworthy as the commits
603
+ * Not cryptographically as trustworthy as the commits
604
604
* Displayed in the GitHub web UI
605
+ * Ability to namespace
606
+ * Manual publishing
607
+ * Manual retrieval
608
+
609
+ ```
610
+ git notes add [commit]
611
+ git notes edit [commit]
612
+
613
+ git notes --ref=[namespace] add [commit]
614
+ git log --show-notes=[namespace]
615
+
616
+ git push [remote] refs/notes/*
617
+ git push [remote] refs/notes/[namespace]
618
+
619
+ git fetch [remote] refs/notes/*:refs/notes/*
620
+
621
+ ```
605
622
606
623
## Credential Caching
607
624
You can’t perform that action at this time.
0 commit comments