Git is a version control system which enables its users to track modification they mad on a document, source code, ...
Fabacademy proided us a space on Gitlab to use fro us to track the documentation we will make during this course.
I first setted up my account.
I added my ssh keys to help me to upload my modification on Gitlab easier.
After setting up my account I learned some basic command for Git that I will use.
git status # for checking status of your project
git add . # for add all changes you have made
git commit -m 'log message' # for commiting your changes with a log message
git push origin branchName # for push your changes to the remote repository to a specific branch.
git pull # for pulling/including changes made to your project from a remote repository.
Since it was my first time to work on a website I approched a friend and asked him to give some concept on how website works.
After understanding how website works in the background, I started learing how to make a website.
I learned html, CSS, and Bootstrap that I will use to make my website.
For making my website I used a text editor called sublime text because of its popularity in web developers.
These are some of the images I took while building my website.
Here is Git commands I used uploading my website on Gitlab.