docs/quorum-vault-system/src/component-documents/git-basics.md

625 B

/* ANCHOR: all */ // ANCHOR: content

  1. Connect SD card to online machine

  2. {{ #include finding-device-name.md:content }}

  3. If the ~/vaults/ repository already exists, ensure it doesn't have any changes that haven't been committed, then remove it using sudo rm -rf ~/vaults before re-running the previous step

  4. Copy the repository with updated files to an online machine, sign, commit and push to the vaults repository:

    $ cp -r /media/vaults ~/vaults/
    $ cd ~/vaults
    $ git add .
    $ git commit -m -S "<message>"
    $ git push origin HEAD
    

// ANCHOR_END: content /* ANCHOR_END: all */