Created
August 17, 2019 20:17
-
-
Save MarounMaroun/4de1747bab22f43eda8b54de19cc9d3a to your computer and use it in GitHub Desktop.
Git 2.23.0 installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
curl -O https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.23.0.tar.gz | |
tar -xvf git-2.23.0.tar.gz | |
cd git-2.23.0/ | |
./configure | |
make && make install | |
cp git /usr/local/bin/git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment