1,576
edits
Changes
→Setup Git on CentOS 7
# Repeat steps 2, 4, 5, and 6 for each lab and assignment invite link.
== Setup and Configure Git on CentOS 7 ==
# Install git (as root): <syntaxhighlight lang="Bash" inline>yum install git</syntaxhighlight>
# Configure git with your full name: <syntaxhighlight lang="Bash" inline>git config --global user.name "Firstname Lastname"</syntaxhighlight>
# All labs and assignments can be found here: https://www.github.com/ops435/
# Each repository contains your own individual code and is set to private. The only people who can see it are you and your professor.
== Cloning Labs and Assignments ==
# To clone (download locally) your lab using SSH: <syntaxhighlight lang="Bash" inline>git clone git@github.com:ops435/lab1-yourgithubusername.git ~/ops435/lab1/</syntaxhighlight>
# Substitute your GitHub username and lab number in the above command.