https://linuxconcept.com/install-git-on-rhel-7-operating-system/
https://phoenixnap.com/kb/how-to-install-rpm-file-centos-linux
http://opensource.wandisco.com/rhel/7/git/x86_64/
https://stackoverflow.com/questions/21820715/how-to-install-latest-version-of-git-on-centos-7-x-6-x
https://superuser.com/questions/1190269/relationship-between-yum-repo-and-rpm
https://blog.thewatertower.org/2019/04/24/modifying-systemd-unit-files/
https://www.tecmint.com/list-all-running-services-under-systemd-in-linux/
https://superuser.com/questions/513159/how-to-remove-systemd-services
https://askubuntu.com/questions/795226/how-to-list-all-enabled-services-from-systemctl
https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/v2-linux?view=azure-devops
https://devblogs.microsoft.com/premier-developer/azure-devops-setting-up-repository-permissions/
https://stackoverflow.com/questions/2853803/how-to-echo-shell-commands-as-they-are-executed
-----------------------------------------------------------------------------------------------------------
https://linuxconcept.com/install-git-on-rhel-7-operating-system/
git --version
sudo yum remove git
sudo touch wandisco-git.repo
sudo vi wandisco-git.repo
[wandisco-git]
name=Wandisco GIT Repository
baseurl=http://opensource.wandisco.com/rhel/7/git/x86_64/
enabled=1
gpgcheck=1
gpgkey=http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco
sudo rpm --import http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco
sudo yum install git
No comments:
Post a Comment