Tag: macOS

  • Fix issue CRLF will be replaced by LF warning in git when run git add macOS

    Fix issue CRLF will be replaced by LF warning in git when run git add macOS

    Add the following to your .gitattributes file from your terminal echo “* text=auto” >>.gitattributes install dos2unix in your macOS brew install dos2unix if you don’t have brew in your mac you can visit this article Install Homebrew · Mac on current project directory that has this issue execute this command: find . -type f -print0…

  • Install Homebrew · Mac

    Install Homebrew · Mac

    Install Homebrew Step by step instructions explaining how to install Homebrew on a Mac, either Mac Intel or Mac M1. Developers use Homebrew to install various software packages on a Mac. You’ll need Xcode Command Line Tools as a prerequisite, but if you don’t have it, Homebrew will install it. Tip: If you did not…

  • Install elastic search on macOS with Homebrew

    To install with Homebrew, you first need to tap the Elastic Homebrew repository: brew tap elastic/tap Once you’ve tapped the Elastic Homebrew repo, you can use brew install to install the latest version of Elasticsearch: brew install elastic/tap/elasticsearch-full Then we start elastic search service brew services start elastic/tap/elasticsearch-full After that we make sure elastic search…