From 9ad10d381758bc6ca981db10a1a3795935467ae9 Mon Sep 17 00:00:00 2001 From: Anton Livaja Date: Tue, 4 Feb 2025 00:15:22 -0500 Subject: [PATCH] add steps to git basic doc --- .../src/component-documents/git-basics.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/quorum-vault-system/src/component-documents/git-basics.md b/quorum-vault-system/src/component-documents/git-basics.md index 015f096..4946352 100644 --- a/quorum-vault-system/src/component-documents/git-basics.md +++ b/quorum-vault-system/src/component-documents/git-basics.md @@ -1,26 +1,26 @@ /* ANCHOR: all */ // ANCHOR: content -* Connect SD card to online machine +1. Connect SD card to online machine -* {{ #include finding-device-name.md:content }} +1. {{ #include finding-device-name.md:content }} -* Copy files into designated location in a repository: +1. Copy files into designated location in a repository: * e.g `cp /dev/ ~//` -* Add all files to git stage: +1. Add all files to git stage: * `git add .` -* Review what files are staged: +1. Review what files are staged: * `git status` -* Create a signed commit: +1. Create a signed commit: * `git commit -m -S ""` -* Push the changes to the branch you are on: +1. Push the changes to the branch you are on: * `git push origin HEAD` // ANCHOR_END: content