Git Matlab

版本 1.0.0.0 (2.3 KB) 作者: Stuart Layton
Git Matlab is a simple git wrapper allows the execution of git commands from within Matlab.
980.0 次下载
更新时间 2012/10/16

查看许可证

This function provides a simple and clean interface to git. Not only does it execute git commands it also allows you to specify a which text editor should be launched in the case that one is needed by git.

% GIT - use GIT from matlab, using standard GIT commands
%
% Examples:
% % initialize a repository
% >> git init;
%
% % add a file to the repository
% >> git add myFile.m % begin tracking my_function.m
%
% % commit changes to the repository
% >> git commit myFile.m -m 'initial checkin of myFile.m'
%
% % push to another repository
% >> git push origin master
%
%
% Commands that require additionall input (such as commits without -m flags)
% will generally fail unless the environment variable EDITOR is defined. However,
% a preferred text editor can be specified within Matlab using the global
% variable GIT_EDITOR (Pro-tip: include this code in your startup.m file)
% For Example:
%
% Declare the global variable
% >> global GIT_EDITOR;
%
% For linux:
% >> GIT_EDITOR = '/path/to/editor'; % provide the complete path
%
% For Mac OSX:
% >> GIT_EDITOR = 'TextEdit'; % Simply provide the application name
%
% The most up to date version of this code can be found at:
% https://github.com/slayton/matlab-git

引用格式

Stuart Layton (2024). Git Matlab (https://www.mathworks.com/matlabcentral/fileexchange/38600-git-matlab), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2012b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Source Control 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0