MATLAB command-line git for Mac?

5 views (last 30 days)
the cyclist
the cyclist on 19 Oct 2014
As of 2014b, MATLAB has native support for git. On a Mac, this seems to only be available via the "Current Folder" GUI.
Is there a way use use MATLAB command-line instead?
Also, is there a way (GUI or otherwise) to do "git status", seeing the status of the repo?

Answers (1)

Bruno Pop-Stefanov
Bruno Pop-Stefanov on 20 Oct 2014
Edited: Bruno Pop-Stefanov on 20 Oct 2014
MATLAB R2014b does support git, but you still have to install it on your system in order to use it with MATLAB. Unfortunately, the command-line features are limited to checkin and checkout. If you want to do git status, for example, you would have to write a simple wrapper that passes the commands to the system, using the system command.
There is one already available on File Exchange:
This should let you use all the functionality that git provides at the command line, instead of using the Current Folder browser.
For detailed info about the integration of git in MATLAB, there are tutorials and links to functions at the following link:
For example, you can refresh the status of files by right-clicking in the Current Folder browser and clicking Source Control > Refresh Git Status.
  2 Comments
the cyclist
the cyclist on 20 Oct 2014
Thanks for the answer. I get the following error when using checkout:
Error using checkout (line 36)
No source control system specified. Set in preferences.
despite having "Enable MathWorks source control integration" ticked in Preferences. Maybe I am doing something wrong?
I had already been using that FEX utility, which is very nice. Unfortunately, the git push command doesn't work via that utility, because of issues the version of libcurl used by MATLAB. (You can read details of this in the comments at the FEX.) This happens even if I issue the command via system. It is possible to jigger the curl files, but I have found it easier to just pop to Terminal to do the push.
I was hoping for something easier with the new native support, though.
Bruno Pop-Stefanov
Bruno Pop-Stefanov on 20 Oct 2014
I thought checkin and checkout could be used with Git, but they apparently only work with non-MathWorks source control system. In the Preferences, if you select another source control system under the second radio button (below Enable MathWorks source control integration), then checkin and checkout won't throw an error.

Sign in to comment.

Categories

Find more on Source Control Integration in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!