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

Linux: ‘Initramfs Unpacking Failed’ Error Upon Booting

Error: initramfs unpacking failed: Decoding failed Resolution: sudo sed -i 's/COMPRESS=lz4/COMPRESS=gzip/g' /etc/initramfs-tools/initramfs.confsudo update-initramfs -u# reboot…

Linux DNS Networking

DNS client on Linux: /etc/resolv.conf specifies the nameservers for resolver lookups. The order of lookup…

How To Upgrade NextCloud 28 to 31 in Docker Compose

1. Upgrade in the incremental progression of one major version at a timeLogin to your…