Skip to content

Instantly share code, notes, and snippets.

@MarounMaroun
Created August 17, 2019 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarounMaroun/4de1747bab22f43eda8b54de19cc9d3a to your computer and use it in GitHub Desktop.
Save MarounMaroun/4de1747bab22f43eda8b54de19cc9d3a to your computer and use it in GitHub Desktop.
Git 2.23.0 installation
#!/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