Skip to content

Instantly share code, notes, and snippets.

@evanwill
Last active March 25, 2024 15:48
Star You must be signed in to star a gist
Save evanwill/0207876c3243bbb6863e65ec5dc3f058 to your computer and use it in GitHub Desktop.
how to add more utilities to git bash for windows, wget, make

How to add more to Git Bash on Windows

Git for Windows comes bundled with the "Git Bash" terminal which is incredibly handy for unix-like commands on a windows machine. It is missing a few standard linux utilities, but it is easy to add ones that have a windows binary available.

The basic idea is that C:\Program Files\Git\mingw64\ is your / directory according to Git Bash (note: depending on how you installed it, the directory might be different. from the start menu, right click on the Git Bash icon and open file location. It might be something like C:\Users\name\AppData\Local\Programs\Git, the mingw64 in this directory is your root. Find it by using pwd -W). If you go to that directory, you will find the typical linux root folder structure (bin, etc, lib and so on).

If you are missing a utility, such as wget, track down a binary for windows and copy the files to the corresponding directories. Sometimes the windows binary have funny prefixes, so you should rename the .exe file to the standard name. Since bin is on the PATH, it will be automatically available to Git Bash.

Note: Many interactive utilities, such as python, ipython or nano, will not display properly with Git Bash's mintty terminal. Try invoking them with winpty instead, for example winpty ipython will work nicely. The Git-for-Windows team is focused on supporting Git, not a full UNIX shell environment. If you are interested in more complete package with build tools, check my notes on Cygwin or Cmder--or install Windows Subsystem for Linux or WSL2.

Here are some utilities to add:

Wget

  • Download the lastest wget binary for windows from eternallybored (they are available as a zip with documentation, or just an exe)
  • If you downloaded the zip, extract all (if windows built in zip utility gives an error, use 7-zip).
  • Rename the file wget64.exe to wget.exe if necessary.
  • Move wget.exe to your Git\mingw64\bin\.

Note: I have noticed some bugs when using Wget on Git Bash to create WARC files. For more complex use of Wget, consider Cygwin instead.

Hugo

Hugo static site generator can be downloaded as a binary and does not have a installer. Dropping it into your bin easily adds it to your Git Bash path. Grab the Windows 64-bit version from the releases page. Unzip the download, then copy hugo.exe into your Git\mingw64\bin directory.

Xpdf

Xpdf is a handy utility for manipulating PDF files.

  • Download the windows version "Xpdf tools".
  • Extract zip.
  • Copy the contents of xpdf-tools-win-4.00\bin64\ into your Git\mingw64\bin\.
  • Check the docs to get started with tools such as pdftotext and pdftopng.

ExifTool

  • Download the "stand-alone Windows Executable" from the ExifTool page (this will be a .zip file e.g. "exiftool-11.99.zip").
  • Unzip the downloaded file.
  • Inside you will find a file named exiftool(-k).exe. Rename it to exiftool.exe.
  • Move exiftool.exe to your Git\mingw64\bin\.

Other possibilities

Most utilities that provide binary releases for Windows can be added to GitBash following the same pattern. Here are some more handy examples:

make

Keep in mind you can easy add make, but it doesn't come packaged with all the standard UNIX build toolchain--so you will have to ensure those are installed and on your PATH, or you will encounter endless error messages.

  • Go to ezwinports.
  • Download make-4.1-2-without-guile-w32-bin.zip (get the version without guile).
  • Extract zip.
  • Copy the contents to your Git\mingw64\ merging the folders, but do NOT overwrite/replace any existing files.

Nano

As of 2018, recent versions of Git Bash include Nano, so this is unnecessary! Just be sure to choose Nano as your default editor when installing Git for Windows.

  • Download the Nano binary from Nano win32-support page. You just need the .exe file, which is named nano-git-0d9a7347243.exe (as of this writing).
  • Rename the file to nano.exe, and copy to the mingw64\bin directory.
  • This version of Nano will not work with Git Bash alone, but can be invoked using winpty, for example, winpty nano test.txt.
@Moriarty16
Copy link

wget works well, thanks mate.

@lpossberg
Copy link

Works! Super happy, thanks!

@dg-developer
Copy link

dg-developer commented Oct 3, 2020

Hey for me, installing cygwin alongside Git Bash works great! I just added C:\cygwin64\bin to the system Path and Git Bash can now find all utilities installed by the cygwin package manager.

There is a way to make a script that calls the cygwin installer at the command line...I'll try to find it and post.

Update:

I forget which computer I set cyg-get up on but thanks to the poster on https://stackoverflow.com/a/23120293/2580891, I think this is where I found out how to do it. Just add the following alias to ~/.bashrc:

alias cyg-get="/cygdrive/c/cygwin64/setup-x86_64.exe -q -P"

Usage is:

cyg-get <package-name>

Here is another tool I haven't tried but others have had success with: https://github.com/transcode-open/apt-cyg

@NaViGatorFL
Copy link

Hey for me, installing cygwin alongside Git Bash works great! I just added C:\cygwin64\bin to the system Path and Git Bash can now find all utilities installed by the cygwin package manager.

There is a way to make a script that calls the cygwin installer at the command line...I'll try to find it and post.

How you did that I need to install automake, autoconf, libtool, pkg-config in gitbash but i was successful in cygwin. Where did you add the system path?

@dg-developer
Copy link

dg-developer commented Oct 6, 2020

@NaViGatorFL:

Here are instructions for adding a path to the system path: https://www.computerhope.com/issues/ch000549.htm

That should work but I haven't tried doing advanced C++ builds etc. in cygwin that I remember. It should work, but if you run into issues and you are able to build on Linux instead, one thing you could try is a Linux virtual machine. Doesn't help if you're trying to build for Windows of course.

@evanwill
Copy link
Author

evanwill commented Oct 7, 2020

Neat trick @drg-developer-2!

@NaViGatorFL getting all the build tools can be a big pain--it sounds like you got it working in cygwin, so that sounds good.

However, for everyone running into tool chain issues, Windows recently made installing WSL much easier and smooth. I would suggest using it rather than Git Bash for anything complicated. Plays nice with Windows and easy to use compared to virtual machine. WSL2 is even better. It feels a lot like using cygwin, but is actually just full real linux terminal.
Some notes from a few months ago: https://evanwill.github.io/_drafts/notes/wsl.html

@dg-developer
Copy link

dg-developer commented Oct 7, 2020

@evanwill great point about WSL, I keep forgetting that is an option. I tried it about 2 years ago then switched back to cygwin. But if WSL has enough features it could potentially have better file system integration among other things. Although I would be curious to see if there is a package manager and how well it works, what tools are available etc.

@Rodgath
Copy link

Rodgath commented Feb 19, 2021

Shukrani!!! You saved the day.

@Sleavely
Copy link

Sleavely commented Mar 9, 2021

I love this guide so much, I've been referring to it for years 😍

I'd like to suggest adding jq which is a superb tool in many developers' belt these days. Basically all you have to do is:

  1. Download the latest Windows executable of your choice from https://github.com/stedolan/jq/releases
  2. Put it in your Git\mingw64\bin folder
  3. Rename to jq.exe

@adminlinzi
Copy link

my system is window10 pro, download the packege from wget software site(https://eternallybored.org/misc/wget/), move the wget.exe to the installed path (C:\Git\mingw64\bin).
open the git bash window, input wget, i can use it.

@bennycode
Copy link

Thank you for sharing how to install make. It worked for me on Windows 10 with Git for Windows v2.33.0 (64-bit) and make-4.3-without-guile-w32.

It's also possible to install git secret by doing the following:

git clone git@github.com:sobolevn/git-secret.git
cd git-secret
make build
PREFIX="/usr/local" make install

@chenxiaoxia2019
Copy link

Thanks for sharing how to install make.
make-4.3-without-guile-w32 works for me on Windows 10.

@e-fb
Copy link

e-fb commented Nov 1, 2022

How about man command in Git Bash terminal? Have you tried adding man to your Win laptop? Please share if you have done. Thanks.

@ch1cano
Copy link

ch1cano commented Jul 8, 2023

Thanks a lot dude!

@Ethkuil
Copy link

Ethkuil commented Jan 6, 2024

How about man command in Git Bash terminal? Have you tried adding man to your Win laptop? Please share if you have done. Thanks.

My solution:

  1. tldr, --help. tldr
  2. curl cheat.sh/command
  3. Man Pages Archive - manned.org, wsl man <command>

So I found the man command isn't so necessary for me.

@Ethkuil
Copy link

Ethkuil commented Jan 6, 2024

Add an util: tree. The tree.com of Windows is terrible for me.

winget add MSYS2.MSYS2
# now we have pacman

pacman -S tree

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment