Earlier quoted context omitted.
That's kind've harsh. What's the issue? Homebrew was about the best option that's existed on OSX for a few years now I thought...
The dependency management is a joke, compile-by-default means it's slow as hell.
Remote code execution, git, and OS X
111–120 of 385 posts
Re: Remote code execution, git, and OS X
#112Earlier quoted context omitted.
So ... has anybody actually checked to see if Apple has patched the vulnerability in git without bumping the version number, like pretty much every linux distribution does for their stable releases?
You're joking, right? When I use software and I look at the version number, I like to know that it is what it says it is. If they are going to patch the vulnerability, then I want to know if they have done so. Besides which, this whole question is missing the point somewhat. There is no easy way of updating the system supplied tools like git, even if you wanted to. The latest version of git is v2.8, and I think it wo…
Re: Remote code execution, git, and OS X
#113Earlier quoted context omitted.
And at this point the first instruction for any OSX user who downloads and compiles anything is "Install Homebrew"
The Homebrew installation process uses the system git.
Re: Remote code execution, git, and OS X
#114Earlier quoted context omitted.
It can be disabled. For regular users without git on their systems, it still makes plenty of sense.
It looks like I need to reboot my machine just to disable it. That's the only info I can see to turn it off - unless I'm missing something?
Re: Remote code execution, git, and OS X
#115Earlier quoted context omitted.
It can be disabled. For regular users without git on their systems, it still makes plenty of sense.
It looks like I need to reboot my machine just to disable it. That's the only info I can see to turn it off - unless I'm missing something?
Re: Remote code execution, git, and OS X
#116You can install brew git and then link XCode git to homebrew version.
Re: Remote code execution, git, and OS X
#117Earlier quoted context omitted.
chmod: /Applications/Xcode.app/Contents/Developer/usr/bin/git: No such file or directory I don't have Xcode installed, do I have to install it back to do this?
If you don't have Xcode installed then you don't have git. IIRC, you might have a /usr/bin/git executable but that's not actually git, all it does is shows a GUI that prompts you to install XCode
wat
Re: Remote code execution, git, and OS X
#118Earlier quoted context omitted.
The dependency management is a joke, compile-by-default means it's slow as hell.
Most commonly-used dependencies are bottled (precompiled) these days.
For example: https://github.com/Homebrew/legacy-homebrew/issues/35995
Re: Remote code execution, git, and OS X
#119Re: Remote code execution, git, and OS X
#120Earlier quoted context omitted.
How do I replace /usr/bin/git? I got the updated brew version downloaded already.
This is in the linked post. Do this to disable it: sudo chmod -x /Applications/Xcode.app/Contents/Developer/usr/bin/git
sudo cp /Applications/Xcode.app/Contents/Developer/usr/bin/git /somewhere/to/backup/just/in/case
sudo rm /Applications/Xcode.app/Contents/Developer/usr/bin/git
sudo ln -s /usr/local/bin/git /Applications/Xcode.app/Contents/Developer/usr/bin/git