Skip to content

Latest commit

 

History

History
 
 

00-getting-started

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Getting Started

Configure Git on the Lab VM

Set User and E-Mail in order to be able to commit to git:

git config --global user.name "Your Name"
git config --global user.email "[email protected]"

Setup Git and Fork the class repo

Go to https://github.com/ARambazamba/az-204 and fork the repo or use the GitHub CLI:

gh repo fork https://github.com/arambazamba/az-204

forking-wf

The forking-workflow allows you to commit your changes to your fork of the repo and still get updates on the repo

forking-wf

Clone Class Repo:

git clone https://github.com/Student01/az-204

Note: If you have forked the class repo clone your own fork, otherwise use https://github.com/ARambazamba/az-204