Project Management

Setting up Git and Gitlab

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. Img: setting-up account

I added my ssh keys to help me to upload my modification on Gitlab easier. Img: adding ssh-key

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.

Building personal website

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.

Img: learning HTML
Img; learning CSS
Img: learning Bootstrap

For making my website I used a text editor called sublime text because of its popularity in web developers. Img: sublime text

These are some of the images I took while building my website.

Img: building web 1
Img: building web 2

Here is Git commands I used uploading my website on Gitlab. Img: git command used