From 001c985e81688686f05fade6add67f6e5cbb7228 Mon Sep 17 00:00:00 2001 From: Prabuddha Hans <21313482@studentmail.ul.ie> Date: Wed, 25 Sep 2024 15:22:17 +0100 Subject: [PATCH] Feat: Introductory git commands --- src/slides/compsoc/3_git.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/src/slides/compsoc/3_git.md b/src/slides/compsoc/3_git.md index b1bbec5..32e3281 100644 --- a/src/slides/compsoc/3_git.md +++ b/src/slides/compsoc/3_git.md @@ -191,4 +191,28 @@ Don't do this Please do this ````git pull ```` -------------------------------------------------------------------------- \ No newline at end of file +------------------------------------------------------------------------- + +````git init```` + +------------------------------------------------------------------------- + +````git remote add origin ```` + +------------------------------------------------------------------------- + +````git add ```` + +------------------------------------------------------------------------- + +````git commit -m ```` + +------------------------------------------------------------------------- + +````git pull origin ```` + +------------------------------------------------------------------------- + +````git push origin ```` + +-------------------------------------------------------------------------