git-core has been made obsolete by the port git
git, github, macos, repository
Solution
It seems that `port` has renamed the `git-core` package to just `git`. So changing the command to
POSIXLY_CORRECT=1 sudo port install gmake libsdl git gnupg
should work.
Problem
I want to run "repo" command on Mac (And download the code from Git repo). I was following the above guide: ``` http://threadeds.blogspot.com/2009/02/getting-started-with-google-android-on.html ``` When I execute the command, ``` POSIXLY_CORRECT=1 sudo port install gmake libsdl git-core gnupg ``` I get this error: I'm having the following issue while installing ``` Error: git-core has been made obsolete by the port git. Please install git instead. Error: org.macports.configure for port git-core returned: obsolete port Please see the log file for port git-core for details: /opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_release_tarballs_ports_devel_git-core/git-core/main.log To report a bug, follow the instructions in the guide: http://guide.macports.org/#project.tickets Error: Processing of port git-core failed ``` How can I resolve this issue?