Posts

Image
Learning GIT 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. Bash  means Bourne Again Shell. Ohhh, I didn't know that. 😂. Bash is a command processor that typically runs in a text window  where the user types commands that cause actions....okay. Combine the two and you get... Git Bash ! Yey! Setup Admit it. The colors are cool right? Haha. Let me run you through the initial setup on your machine. cd ~/.ssh is the first command to run. It basically lets you go to the .ssh directory ls doing ls here will respond known_hosts. Ok, you don't really need to know that one so let's skip. That's more of an advanced topic. ssh-keygen -t rse -C "yoda" This will generate your ssh key. When you do ls again, it should come back with your private and public key which you will later use on your repository. Now. Run cat id_rsa.pub  to view the contents of your public k...