From 26e76cd08a8ba8591a2e018351b8c74c0c7cd015 Mon Sep 17 00:00:00 2001 From: williamdiebel Date: Wed, 3 Jul 2024 21:28:30 -0400 Subject: [PATCH] Adding documentation for branching and new html page --- .DS_Store | Bin 6148 -> 8196 bytes documentation/Making a branch.md | 57 +++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 documentation/Making a branch.md diff --git a/.DS_Store b/.DS_Store index 62fe8337de171aeebb1c1721e86fdf9685811a69..e322795e7cf94d119b8f586bf0dffbc37981555d 100644 GIT binary patch delta 290 zcmZoMXmOBWU|?W$DortDU;r^WfEYvza8FDWo2aMAD7rCVH}hr%jz7$c**Q2S7O*gi zPUc~mP|wSd!jR99%uvdZ%aF>D$56tM2*jB{vAmpg!{Frn+ybC6Fn~vOZoZ34Qcivn zP$|dqPx6iu(#ITuY`i*BT=YoOGC7c4c=9_|?#;_tZZK`O=Q+>JCBY4}#TDe!&4L`? YnJ4p$cuw}`;ox9|1Omh6c%C`T0Mf2L=l}o! delta 107 zcmZp1XfcprU|?W$DortDU=RQ@Ie-{Mvv5sJ6q~50$SAlmU^g?P;A9?w37caCA2Ur% t?pVyu!6C>DR0IS9+(5z=q<&-Kcjn3bGM*sa3``J{K!!7Hj^~-f3;^=`5#0a) diff --git a/documentation/Making a branch.md b/documentation/Making a branch.md new file mode 100644 index 0000000..58018a3 --- /dev/null +++ b/documentation/Making a branch.md @@ -0,0 +1,57 @@ +# Making a branch + +Here I will detail the instructions I am using to explore the branching functionality of Git while making a separate webpage for my CV. + +## Step 1: Create a New Branch + +Before making any changes, you'll want to create a new branch in your Git repository. This allows you to work on a new feature or change without affecting the main codebase. + +```git checkout -b feature/cv-page``` + +This command creates a new branch named `feature/cv-page` and switches to it. + +## Step 2: Make Your Changes + +Now, on your new branch, you can make the necessary changes to create a separate page for your CV. Based on the previous instructions: + +1. Create `cv.html`: Create a new file named `cv.html` in your project directory and add the HTML structure to embed your CV PDF using an `