What you will need to do:
Assuming the installation worked above, this section is for how to use GitBash regularly, each time you open your laptop for working on assignments.
Selecting "Git Bash" above will open what's called a new shell.
Shell is jargon for this type of software where you type in text commands. This is also called a commandline or terminal interface.
The line that first displays is called your "shell prompt," which lets you know that the shell is ready for you to type commands. Each shell prompt is customized by Git for each user, but we tweaked ours to show you approximately what yours might look like (Yours can, and will likely, be different to some extent. Any differences do not matter):
Can one navigate to gitbash-created folders using Windows Explorer, does one need to? The answer is yes and yes. It's useful when you want to make a zip of your module folders.
If you start Git Bash, it places you in this "home directory" (home folder) just above your Desktop and those other folders.
See the side-by-side of the "File Explorer" view versus the "Git Bash" view above. On both sides, the red-underlined part is the "Path," (also known as the location) of your home directory:
Git bash believes your path is: /c/Users/YOUR_USERNAME
File Explorer believes your path is: C:\Users\YOUR_USERNAMEThey both mean the same thing, and both refer to your home directory. However, in File Explorer, you must use the "C:\Users\YOUR_USERNAME" version, and in Git Bash, you must use the "/c/Users/YOUR_USERNAME" version.
Additionally, we have run the command to list files (ls) in Git Bash, which confirms that the files we see in the File Explorer window match the files shown by Git Bash (outlined in red on both sides).
Making a zip file:
This section is only for advanced courses that need jar files to be included in CLASSPATH.