Make sure git is insalled.
		Commands as typed using linux.  Do not do this as root (#)
		
		Set global user on specific user account.  No spaces in quotes.  
		
		$git config --global user.name "this is your git hub user name "
		
		Set email.
		
		$git config --global user.email "youremail@url.domain"
		
		Clone the repo from github.  Copy the repo url from the web site or use the url given to you.
		The following is the url for this repo.
		
		$git clone https://github.com/tritechsc/tritechsc.github.io.git
		
		If you have privelege to "Contribute" to the repo.
		Make changes then do the following:
		
		$git add nameofile   (Example "git add index.html" or "
		
		Type the follwing will pull files from the remote repo on github
		
		$git pull