Skip to content

Steve's coffee shop recipe project for the Pluralsight Course "Git Fundamentals"

Notifications You must be signed in to change notification settings

a-a-ron/coffee-shop-recipes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

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

About

Steve's coffee shop recipe project for the Pluralsight Course "Git Fundamentals"

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published