Since I'm a software developer it was not a big deal to create a website for my profile. I started the development process by downloading a free HTML template design. Then I customised HTML and CSS file like I the way I want. This is responsive design which will support all the screen views.
I would love to introduce a new open source text editor from Microsoft called Visual Studio Code. I'm pretty sure that you will love it.
Git is a distributed revision control system used to manage work flows between multiple people working on the same file. Every Git directory on every computer is a full-fledged repository with complete history and full version tracking abilities, independent of network access or a central server
Git enables us to work on the same repository from different machines. Git tracks all the changes in the file and helps sync them with all the users.
Installing and configuring Git
sudo apt-get install git
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
This creates a new ssh key, using the provided email as a label.
Enter a file in which to save the key (/home/you/.ssh/id_rsa): [Press enter]
$ eval "$(ssh-agent -s)"
$ ssh-add ~/.ssh/id_rsa
git config --global user.name "your username"
git config --global user.email "your mail id"
cat ~/.ssh/id_rsa.pub
git clone git@gitlab.fabcloud.org:academany/fabacademy/2018/labs/fablabtrivandrum/students/abhilash-chandroth.git
Working with local repository
Check basic git commands with your local repository, command like git status,push and pull are checked
$ cd "directory name"
git status
to see the lists of locally changed files.git pull
to get the latest files from git repo.git add --all
will add all the files to index.git commit -m "comment"
to commit the changes next push.git push
to check in the committed changes to git repo.