Changes between Version 4 and Version 5 of Other/Summer/2024/lLM
- Timestamp:
- Jul 8, 2024, 2:03:49 PM (5 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Other/Summer/2024/lLM
v4 v5 9 9 **What we did this week:** 10 10 1. **Github** Familiarized ourselves with Cy-Phy Lab Github, understanding system architecture, existing code, and creating our credentials. We then practiced pushing and pulling commits to Github using the following command line prompts: 11 {{{#!div style="font-size: 80%" 12 Code highlighting: 13 {{{git clone https://github.com/URL-TO-REPO-HERE #to clone repository onto local11 12 {{{#!python 13 git clone https://github.com/URL-TO-REPO-HERE #to clone repository onto local 14 14 git status 15 15 git add #takes the changes from working directory to staging area … … 17 17 git commit -m "ADD_COMMIT_MESSAGE_HERE" #to ensure readable Github 18 18 git push origin main #this pushes changes to the main repository from your local 19 20 21 19 }}} 22 20