-
-
Save wwek/a3cfd4192aabf10efb7ca9ad4e91cbdd to your computer and use it in GitHub Desktop.
Revisions
-
evanwill revised this gist
Jul 22, 2017 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,6 +2,7 @@ [Git for Windows](https://git-for-windows.github.io/) is bundled with "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. (Note: a portable alternative is Cmder, the full version comes bundled with Git Bash, [notes here](https://evanwill.github.io/_drafts/notes/cmdr.html).) 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). If you go to that directory, you will find the typical linux root folder structure (`bin`, `etc`, `lib` and so on). -
evanwill revised this gist
May 26, 2016 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ [Git for Windows](https://git-for-windows.github.io/) is bundled with "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). 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 corrisponding directories. Sometimes the windows binary have funny prefixes, so you should rename the exe file to the standard name. @@ -14,7 +14,7 @@ Here are some to add: ## wget - Download the lastest wget binary for windows from https://eternallybored.org/misc/wget/ (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](http://www.7-zip.org/)). - Move `wget.exe` to `C:\Program Files\Git\mingw64\bin\` ## make -
evanwill revised this gist
May 26, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Here are some to add: - Download the lastest wget binary for windows from https://eternallybored.org/misc/wget/ (they are available as a zip with documentation, or just an exe) - If you downloaded the zip, extract all. - Move `wget.exe` to `C:\Program Files\Git\mingw64\bin\` ## make -
evanwill created this gist
May 26, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,26 @@ # How to add more to Git Bash on Windows [Git for Windows](https://git-for-windows.github.io/) is bundled with "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. 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 corrisponding 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. Here are some to add: ## wget - Download the lastest wget binary for windows from https://eternallybored.org/misc/wget/ (they are available as a zip with documentation, or just an exe) - If you downloaded the zip, extract all. - Move wget.exe to `C:\Program Files\Git\mingw64\bin\` ## make - Go to ezwinports, https://sourceforge.net/projects/ezwinports/files/ - Download `make-4.1-2-without-guile-w32-bin.zip` (get the version without guile) - Extract zip - Copy the contents to `C:\Program Files\Git\mingw64\` merging the folders, but do NOT overwrite/replace any exisiting files.