Category Archives: Git

Add an SSH key to an account : a 5 step tutorial

Sometimes you want to clone, push, … from/to some repository and you receive permission denied error because you didn’t set a key-pair between your machine and the repository. We want to solve this problem in 5 easy steps:   STEP 1– … Continue reading

Posted in Git, Linux, programming, Software, SVN, Ubuntu | Tagged , , , , , , , , , , , , , , , , , , , , , , , | Leave a comment

Git – A step-by-step tutorial (command line)

you need to download and install gitbash 1 – in the directory we want to work we enter init command: & git init it makes an empty repository in /.git/ that is hidden. 2 – then we can use status … Continue reading

Posted in Git, Linux, programming, Software, Ubuntu | Tagged , , , , , , , , , , , , , , , , , | Leave a comment

Git – Version Control System – Basics (Video Tutorial)

1 – Part. 1 Version Control System 2- Part. 2 What is Git? 3- Part. 3 Get going main commands of Git:  $ git init myproject $ cd myproject $ git add . $ git commit -m “the first version of code” … Continue reading

Posted in Git, Linux, programming, Software, Ubuntu | Tagged , , , , , , , , , , , , | Leave a comment

Using Git – Basic Steps (Version Control System)

Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. If you do not know about Git, first take a look at the link1 and link2 0- … Continue reading

Posted in Git | Tagged , , , | 1 Comment