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

Ubuntu 20.04 Initial Setup

Basic Setup: # Set hostname and ip nmtui # remember to deactive/reactive a connection after…

Backup and Restore Prerequisites

1. Remote machine is Centos and Local machine is Windows, install Cygwin (including "Admin," "Base,"…

How to Import Files Into a Docker Container

1. Use SCP to copy files to the remote server while logged onto the local…