From 58483d18194eb6177cd0157f470f1a6e0fa8c94a Mon Sep 17 00:00:00 2001 From: Jigme Datse Yli-Rasku Date: Fri, 4 Oct 2024 21:26:19 -0700 Subject: [PATCH] Adding some Git instructions This adds some git instructions. I'm not *quite* sure it's correct. --- git/index.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 git/index.md diff --git a/git/index.md b/git/index.md new file mode 100644 index 0000000..6372912 --- /dev/null +++ b/git/index.md @@ -0,0 +1,18 @@ +# Git Commands + +I'm going to create a document first about setting up a respository +remotely, and then syncing with a local "repository". + +## Git Remote Sync + +Remote is setup + +``` +$ git init +$ git remote add +$ git pull +$ git push --set-upstream +``` + +That seems to handle it. +