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

Windows WSL: How to Fix Broken bashrc File

Problem: When there's an incorrect setup of Windows Subsystem for Linux (WSL), where $HOME/.bashrc is…

Some MySQL Admin Stuff

make sure it's running ps -ef | grep mysql Creating MySQL DB HOWTO on creating…

Step by Step Kubernetes Application Hosting: Persistent Storage, Pod Creation, Deployment Plan, Service Clustering, and Ingress Routing

Overview Update: we have a new article which goes directly into a production-style setup of…