Posted On April 18, 2019

Git / Github / Gitlab

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Git / Github / Gitlab

1. Install Git/Github/Gitlab

This utility enables cloning of source codes to the local machine, among other advanced functions.

# CentOS 7 - Git CLI
sudo yum udpate && sudo yum install git

# show version
git --version
# Install Github Desktop GUI on CentOS 7 - Minimal
yum groupinstall "X Window System"
yum install gnome-classic-session gnome-terminal nautilus-open-terminal control-center liberation-mono-fonts
unlink /etc/systemd/system/default.target
ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
# If this instance is a VM
yum -y install open-vm-tools-desktop
systemctl enable vmtoolsd.service
reboot
# Ubuntu - Git CLI
sudo apt update &&s udo apt install git

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Transfer Files Via SSH or WinRM

Secured Shell (SSH) is the prevalent standard for remote accessing of Linux systems. Even Microsoft…

How To Install Zabbix Client on CentOS 8

# Open the commonly known Zabbix ports firewall-cmd --zone=public --add-port=10050/tcp --permanent firewall-cmd --zone=public --add-port=161/tcp --permanent…

Linux: How to Check CPU Speed

# Check cpu capacity kim@kim-linux:~$ sudo lshw -c cpu | grep capacity capacity: 3600MHz #…