How to Install Git Ubuntu
60 likes | 75 Views
Git is a popular free, distributed version control system used by millions of businesses around the world. This video will walk you through the steps to install Git in Ubuntu.<br><br>For detailed steps visit - https://fedingo.com/how-to-install-git-in-ubuntu
How to Install Git Ubuntu
E N D
Presentation Transcript
There are two ways to install git You can install git • Via package managers such as apt • Via Source code
Install Git from package • Install prerequisites • Install git using apt install • Check git version For detailed commands visit https://fedingo.com/how-to-install-git-in-ubuntu/
Install Git from Source • Install Dependencies • Download git • Extract .tar.gz file • Compile and Install git • Verify Git version For detailed commands visit https://fedingo.com/how-to-install-git-in-ubuntu/
Configure Git Run the following two commands to set up username and email for git user. Replace “Your Name” and youremail@yourdomain.com with your name and email respectively. $ git config --global user.name "Your Name" $ git config --global user.email "youremail@yourdomain.com"
Thank You Visit for more https://fedingo.com/how-to-install-git-in-ubuntu/