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
598598
599599## Git Notes
600600### Summary
601- * Supplemental commits
601+ * Supplements commit message and description
602602* Parallel graph
603- * Not cryptographically as truthworthy as the commits
603+ * Not cryptographically as trustworthy as the commits
604604* 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+ ```
605622
606623## Credential Caching
607624
You can’t perform that action at this time.
0 commit comments