Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 1.76 KB

README.md

File metadata and controls

49 lines (29 loc) · 1.76 KB

Pluralsight Course: Git Fundamentals

Course Resources

Steve's coffee shop recipe project

You can download the following zipped folder to have Steve's coffee shop recipes at the beginning. Use this project to following along in the course.

Bash script for "How to Modify and Fix Your Commits"

Use the following script to generage the 6 files to follow along with git amend, git reset, and git reflog.

for d in {1..6}; do touch "file${d}.md"; git add "file${d}.md"; git commit -m "adding file ${d}"; done

If you need one for powershell, you can use the following;

for ($d=1; $d -le 6; $d++) { Out-File file$d.md; git add file$d.md; git commit -m "adding file$d.md"; }

Next Steps

Customizing your terminal or command prompt

There are a lot of options out there, and it depends on what you decide to use and what operating system you're using.

Windows

Mac

Visualizing Git

Screen Shot 2023-03-12 at 9 18 43 PM

Here is a linked to my forked repository that you can use as a sandbox environment to visualize git commands.

Git's official documentation

Screen Shot 2023-03-12 at 9 18 06 PM