Created
October 4, 2020 16:52
-
-
Save LinuxlinkedBD/7b93c10fbdb6956e2d6b0b39c1587416 to your computer and use it in GitHub Desktop.
Git installation and configuration on #ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you need help related to git installation and configuration, contact with me: | |
Telegram: https://t.me/linuxlinked | |
email: [email protected] | |
WhatsApp: https://wa.me/8801720903155 | |
Skype:live:.cid.c0dc316b9d727d5e | |
#===============================================================================# | |
#!/bin/bash | |
# To Install latest Git, run this command: | |
sudo apt install git | |
# To Configure Git run this command: | |
sudo git config --global user.name "TypeYourName" | |
sudo git config --global user.email "TypeYourEmail" | |
# To check Git configuration settings run this command: | |
git config --list | |
#checkout below YouTube video for Git installation and configuration on #ubuntu | |
https://www.youtube.com/watch?v=8senREzJS1I&ab_channel=AlAmin | |
#git #github #gitlab #git_linux #git_projects |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment