Skip to content

Commit 1278aa6

Browse files
author
jordanmccullough
committed
Revise and append git notes content
1 parent f3cc249 commit 1278aa6

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

workbooks/github-advanced.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)