This first assignment I started to develop my website and brainstorm ideas for my final project, which you can find here.
The very first thing I did was set up all my accounts from the websites and resources I will be using throughout Fab Academy. To set up my GitLab account I first signed in using my FabLab account. With lots of help from my instructor Brandon and assistance from Rachelle I was able to set up Git. I am using my Apple Macbook for this so the instructions may differ for someone following my tutorial on Windows or Linux. I followed the instructions on the FabAcademy tutorial website for Git simple cheat sheet.
1. Using the Terminal application on my Macbook, I ran this command to add my Git Username:
git config –-global user.name Isabella.rego
git config –-global user.email rego_isabella@wheatoncollege.edu
(Note: If a long string starting with ssh-rsa is returned, you already have one generated so you can skip the next step.)cat ~/.ssh/id_rsa.pub
5. This then generated a SSH Key, to display my key I re-run the command from step 3:ssh-keygen -t rsa -C rego_isabella@wheatoncollege.edu
6. To copy my key I run this command:cat ~/.ssh/id_rsa.pub
(Note: This command differs for each operating system, to find the correct command for your system, go to the linked tutorial above and navigate to step 4 in the Setup Git section.)pbcopy < ~/.ssh/id_rsa.pub
One AMAZING thing about using VSCode is there is a built-in source control for me to commit and upload to my public site. "Pushing" is essentially making the changes of my code visible to the public.