From 333c1e67995fc644a2dc06ab50961951fd05fbea Mon Sep 17 00:00:00 2001 From: Barbara 4bes <43912004+Ba4bes@users.noreply.github.com> Date: Sat, 22 Feb 2025 16:23:25 +0000 Subject: [PATCH 1/8] Adds the code to expose the .git folder (commented) --- .vscode/settings.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 236981053..9eb9646fe 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -17,8 +17,10 @@ "files.autoSave": "afterDelay", "screencastMode.onlyKeyboardShortcuts": true, "terminal.integrated.fontSize": 18, - "workbench.activityBar.visible": true, "workbench.colorTheme": "Visual Studio Dark", "workbench.fontAliasing": "antialiased", - "workbench.statusBar.visible": true -} + "workbench.statusBar.visible": true, + // "files.exclude": { + // "**/.git": false + // } +} \ No newline at end of file From f64512739f9721e04e008f0640c12c1b75442c09 Mon Sep 17 00:00:00 2001 From: Barbara 4bes <43912004+Ba4bes@users.noreply.github.com> Date: Mon, 31 Mar 2025 21:41:14 +0000 Subject: [PATCH 2/8] Increase font size for terminal to match editor --- .vscode/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 9eb9646fe..085cbeabc 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -16,7 +16,7 @@ "explorer.openEditors.visible": 0, "files.autoSave": "afterDelay", "screencastMode.onlyKeyboardShortcuts": true, - "terminal.integrated.fontSize": 18, + "terminal.integrated.fontSize": 22, "workbench.colorTheme": "Visual Studio Dark", "workbench.fontAliasing": "antialiased", "workbench.statusBar.visible": true, From 2f612162d359e25ec4dd6b88b2db97ad62a4a4df Mon Sep 17 00:00:00 2001 From: Barbara 4bes <43912004+Ba4bes@users.noreply.github.com> Date: Mon, 31 Mar 2025 21:48:13 +0000 Subject: [PATCH 3/8] clear terminal window after creation --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d9d6b038e..b924fd0f9 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -20,6 +20,6 @@ // Update welcome text and set terminal prompt to '$ ' "onCreateCommand": "echo PS1='\"$ \"' >> ~/.bashrc", // Pull all branches - "postAttachCommand": "git pull --all" + "postAttachCommand": "git pull --all && clear" } // DevContainer Reference: https://code.visualstudio.com/docs/remote/devcontainerjson-reference \ No newline at end of file From ac3e1d09e642966e3b68dea06d1e951984eff1dd Mon Sep 17 00:00:00 2001 From: Barbara 4bes <43912004+Ba4bes@users.noreply.github.com> Date: Thu, 3 Apr 2025 20:09:08 +0000 Subject: [PATCH 4/8] update readme for Git Essential training course --- README.md | 26 +++++++------------------- 1 file changed, 7 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 302ee243c..4922efc9d 100644 --- a/README.md +++ b/README.md @@ -1,30 +1,18 @@ # Git Essential Training This is the repository for the LinkedIn Learning course Git Essential Training. The full course is available from [LinkedIn Learning][lil-course-url]. -_See the readme file in the main branch for updated instructions and information._ -## Instructions -This repository has branches for each of the videos in the course. You can use the branch pop up menu in github to switch to a specific branch and take a look at the course at that stage, or you can add `/tree/BRANCH_NAME` to the URL to go to the branch you want to access. -## Branches -The branches are structured to correspond to the videos in the course. The naming convention is `CHAPTER#_MOVIE#`. As an example, the branch named `02_03` corresponds to the second chapter and the third video in that chapter. -Some branches will have a beginning and an end state. These are marked with the letters `b` for "beginning" and `e` for "end". The `b` branch contains the code as it is at the beginning of the movie. The `e` branch contains the code as it is at the end of the movie. The `main` branch holds the final state of the code when in the course. -When switching from one exercise files branch to the next after making changes to the files, you may get a message like this: +## Instructions +To use this repository, you can create a _fork_. You do so from the GitHub website. The process will be explained in the course. +After you have created a fork, you can use the repository from your own account. - error: Your local changes to the following files would be overwritten by checkout: [files] - Please commit your changes or stash them before you switch branches. - Aborting +## GitHub Codespaces +It is recommended to use GitHub Codespaces to follow along with this course. Explanations on how to use them are provided in the course. -To resolve this issue: - - Add changes to git using this command: git add . - Commit changes using this command: git commit -m "some message" +You can find more information on GitHub Codespaces possibilities and limitations [here](https://docs.github.com/en/codespaces/about-codespaces/what-are-codespaces). -## Installing -1. To use these exercise files, you must have the following installed: - - [list of requirements for course] -2. Clone this repository into your local machine using the terminal (Mac), CMD (Windows), or a GUI tool like SourceTree. -3. [Course-specific instructions] +_Note: You can get up to 60 hours of GitHub Codespaces usage per month for free. Find out more about pricing here [here](https://docs.github.com/en/billing/managing-billing-for-your-products/managing-billing-for-github-codespaces/about-billing-for-github-codespaces)._ [0]: # (Replace these placeholder URLs with actual course URLs) From ae601c052b1d19d857e7aa1bf97df3154c07af94 Mon Sep 17 00:00:00 2001 From: Steven Moser Date: Mon, 5 May 2025 09:08:55 -0700 Subject: [PATCH 5/8] Update README.md --- README.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4922efc9d..e17c430c1 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,11 @@ # Git Essential Training This is the repository for the LinkedIn Learning course Git Essential Training. The full course is available from [LinkedIn Learning][lil-course-url]. +![lil-thumbnail-url] +## Course Description + +

If you’ve ever wondered why someone should use Git or how to use it for version control, this is a great course to get started. Join Azure MVP and GitHub Star Barbara Forbes as she guides you through the installation process, the Git workflow, setting up and pushing code into a repo, and committing changes, all with a focus on version control and how Git can help you achieve it. Find out why people use Git. Learn how Git works, locally or through a provider, and how you can get it installed, configured, and running the way you need it to work. Follow the full process of pushing your code with Git, then explore ways to make changes to files. Discover important concepts in Git, like how to ignore files you don’t want to include, how branching and merging can help you with development, what should be in a commit, and how to troubleshoot common errors.

This course is integrated with GitHub Codespaces, an instant cloud developer environment that offers all the functionality of your favorite IDE without the need for any local machine setup. With GitHub Codespaces, you can get hands-on practice from any machine, at any time—all while using a tool that you’ll likely encounter in the workplace. Check out “Using GitHub Codespaces" with this course to learn how to get started.

## Instructions To use this repository, you can create a _fork_. You do so from the GitHub website. The process will be explained in the course. @@ -14,9 +18,18 @@ You can find more information on GitHub Codespaces possibilities and limitations _Note: You can get up to 60 hours of GitHub Codespaces usage per month for free. Find out more about pricing here [here](https://docs.github.com/en/billing/managing-billing-for-your-products/managing-billing-for-github-codespaces/about-billing-for-github-codespaces)._ +### Instructor + +Barbara Forbes + +Azure MVP and GitHub Star + + +Check out my other courses on [LinkedIn Learning](https://www.linkedin.com/learning/instructors/barbara-forbes?u=104). + [0]: # (Replace these placeholder URLs with actual course URLs) -[lil-course-url]: https://www.linkedin.com/learning/ -[lil-thumbnail-url]: http:// +[lil-course-url]: https://www.linkedin.com/learning/git-essential-training-25677984 +[lil-thumbnail-url]: https://media.licdn.com/dms/image/v2/D4D0DAQFtri24YywCRA/learning-public-crop_675_1200/B4DZaSCsxDGwAc-/0/1746206904098?e=2147483647&v=beta&t=kWaRJNyIgQ-qsLPNYMvXiqqQgEhud2WqEhf2m-L3f5M From 4bf5834aec04fb112ebd5ae8e51e8a6795a1640a Mon Sep 17 00:00:00 2001 From: Steven Moser Date: Mon, 5 May 2025 09:09:24 -0700 Subject: [PATCH 6/8] Update NOTICE --- NOTICE | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/NOTICE b/NOTICE index 547595f90..c7aacad74 100644 --- a/NOTICE +++ b/NOTICE @@ -1,11 +1,9 @@ -Copyright 2022 LinkedIn Corporation +Copyright 2025 LinkedIn Corporation All Rights Reserved. Licensed under the LinkedIn Learning Exercise File License (the "License"). See LICENSE in the project root for license information. -ATTRIBUTIONS: -[PLEASE PROVIDE ATTRIBUTIONS OR DELETE THIS AND THE ABOVE LINE “ATTRIBUTIONS”] Please note, this project may automatically load third party code from external repositories (for example, NPM modules, Composer packages, or other dependencies). From b5f29a548b8927ae9464e63c8beb8315f40d1bf9 Mon Sep 17 00:00:00 2001 From: Woo Date: Mon, 12 Jan 2026 08:19:53 -0500 Subject: [PATCH 7/8] adds example.md to demostrate the git process --- example.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 example.md diff --git a/example.md b/example.md new file mode 100644 index 000000000..434713954 --- /dev/null +++ b/example.md @@ -0,0 +1 @@ +this is content \ No newline at end of file From e60b3d6227ce3f6b7bde1cab3d3ce7e3efb86340 Mon Sep 17 00:00:00 2001 From: woobutterisgood Date: Mon, 12 Jan 2026 08:39:47 -0500 Subject: [PATCH 8/8] Create example02.md --- example02.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 example02.md diff --git a/example02.md b/example02.md new file mode 100644 index 000000000..a46c98ae9 --- /dev/null +++ b/example02.md @@ -0,0 +1 @@ +This is some text