add git commit instructions
This commit is contained in:
parent
7c64592348
commit
1b7ef27167
|
@ -0,0 +1,27 @@
|
||||||
|
/* ANCHOR: all */
|
||||||
|
// ANCHOR: content
|
||||||
|
* Connect SD card to online machine
|
||||||
|
|
||||||
|
* {{ #include finding-device-name.md:content }}
|
||||||
|
|
||||||
|
* Copy files into designated location in a repository:
|
||||||
|
|
||||||
|
* e.g `cp /dev/<your_device> ~/<repository_name>/<path_to_location>`
|
||||||
|
|
||||||
|
* Add all files to git stage:
|
||||||
|
|
||||||
|
* `git add .`
|
||||||
|
|
||||||
|
* Review what files are staged:
|
||||||
|
|
||||||
|
* `git status`
|
||||||
|
|
||||||
|
* Create a signed commit:
|
||||||
|
|
||||||
|
* `git commit -m -S "<message>"`
|
||||||
|
|
||||||
|
* Push the changes to the branch you are on:
|
||||||
|
|
||||||
|
* `git push origin HEAD`
|
||||||
|
// ANCHOR_END: content
|
||||||
|
/* ANCHOR_END: all */
|
|
@ -20,3 +20,5 @@ Procedure for importing an arbitrary secret (raw key, mnemonic, state secrets) i
|
||||||
|
|
||||||
1. Once encrypted, name the file appropriately and add it to an `artifacts/` directory in the appropriate namespace subdirectory in the `vaults` repository
|
1. Once encrypted, name the file appropriately and add it to an `artifacts/` directory in the appropriate namespace subdirectory in the `vaults` repository
|
||||||
|
|
||||||
|
{{ #include ../../../../component-documents/git-basics.md:content }}
|
||||||
|
|
||||||
|
|
|
@ -52,6 +52,8 @@ This is a ceremony for generating and sharding entropy to a set of existing Quor
|
||||||
|
|
||||||
1. Upload the newly generated artifacts into the `vaults` repository
|
1. Upload the newly generated artifacts into the `vaults` repository
|
||||||
|
|
||||||
|
{{ #include ../../../../component-documents/git-basics.md:content }}
|
||||||
|
|
||||||
1. Gather all the original items that were in the air-gapped bundle:
|
1. Gather all the original items that were in the air-gapped bundle:
|
||||||
|
|
||||||
* Air-gapped computer
|
* Air-gapped computer
|
||||||
|
|
|
@ -53,6 +53,8 @@ This is a ceremony for generating entropy which is used to derive Quorum PGP key
|
||||||
|
|
||||||
1. Transfer the ceremony artifacts to an online machine using one of the SD cards and upload the newly generated artifacts into the `vaults` repository in the appropriate `<namespace>` sub directory using an online machine
|
1. Transfer the ceremony artifacts to an online machine using one of the SD cards and upload the newly generated artifacts into the `vaults` repository in the appropriate `<namespace>` sub directory using an online machine
|
||||||
|
|
||||||
|
{{ #include ../../../../component-documents/git-basics.md:content }}
|
||||||
|
|
||||||
1. Gather all the original items that were in the air-gapped bundle:
|
1. Gather all the original items that were in the air-gapped bundle:
|
||||||
|
|
||||||
* Air-gapped computer
|
* Air-gapped computer
|
||||||
|
|
Loading…
Reference in New Issue