Purpose: Become familiar with Git commands in the Terminal
Task: Clone a repository, modify a file, add and push changes
Outcome: Understanding how to use git to get files and publish changes
Before you can do anything, you'll need to make an SSH key and add it to your GitHub account. That way you'll be able to push changes.
Creating SSH Key and Add it to GitHub -> Start Here
Here I am navigating to a test file to practice making a change:
Here I am modifing the file (just in my terminal editor because this is a .txt, we would use and IDE for actual code)
Now I am staging my changes with the git add
command so I can then commit and push them
Finally, on Github we can see that my changes successfully pushed and can be viewed by others!