From fd01912339044e9518d86fc5263b2bcfe387820c Mon Sep 17 00:00:00 2001 From: CJM Rodriguez Date: Thu, 4 Sep 2025 16:45:08 -0700 Subject: [PATCH 1/2] Maxwell --- Docs/1_General/1.3_GitWorkflow.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Docs/1_General/1.3_GitWorkflow.md b/Docs/1_General/1.3_GitWorkflow.md index ed86c4c..3520282 100644 --- a/Docs/1_General/1.3_GitWorkflow.md +++ b/Docs/1_General/1.3_GitWorkflow.md @@ -83,3 +83,4 @@ If you feel unsure of what you need to do, ask a lead or mentor ASAP! - Nathan - Vivie - Jeffery +- Maxwell \ No newline at end of file From 310a3741e5674eeefba5b4d8f222d9f0d0d2b140 Mon Sep 17 00:00:00 2001 From: CJM Rodriguez Date: Thu, 4 Sep 2025 16:56:11 -0700 Subject: [PATCH 2/2] Added branch --- Docs/1_General/1.3_GitWorkflow.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docs/1_General/1.3_GitWorkflow.md b/Docs/1_General/1.3_GitWorkflow.md index 3520282..788e18e 100644 --- a/Docs/1_General/1.3_GitWorkflow.md +++ b/Docs/1_General/1.3_GitWorkflow.md @@ -5,7 +5,7 @@ Branches are a deviation or split from the main branch that can be adding or removing a specific feature For example, I can open a branch to work on a new doc page for this training repo. Since I am on my own branch, I am not interfering with the main branch's commit history, which is supposed to be kept clean. -A "clean" commit history is made up of large, well named commits to make it easy to quickly skim recent changes. +A "clean" commit history is made up of large, well named commits to make it easy to quickly skim recent changes.git push --set-upstream origin ` Because I am on my own branch, another student can also work on their own article without fear of interfering with my work. To create a branch run: @@ -17,7 +17,7 @@ Otherwise you can use `git status` to check your branch. Right now, this branch is only local to your computer. To upload this branch to the remote repository so others can view it: -`git push --set-upstream origin ` +` Once you have pushed the branch for the first time, it should show up on GitHub and be accessible by others. Use `git push` without the rest to push any further commits.