Filter löschen
Filter löschen

Is it possible to ''SVN update'' command that can be used by m-files?

6 Ansichten (letzte 30 Tage)
Arpeet Sojitra
Arpeet Sojitra am 11 Mai 2020
Beantwortet: Sai Ravi Tej Y am 12 Jan. 2022
Is there any possibility "SVN-update from repository" command that can be used from m-file?

Antworten (1)

Sai Ravi Tej Y
Sai Ravi Tej Y am 12 Jan. 2022
You can use the 'system' function of MatLab along with SVN commands, in an m-file.
Below piece of code can be used to check if there is really any updates on the svn folders, from your previuos update and updates the svn folder accordingly.
svnPath.localFolder = 'path to your svn local folder';
svnPath.repoFolder = 'URL to your svn repo folder';
%check the current HEAD revision of the repo folder
[~, url_rev] = system(['svn info ', svnPath.repoFolder, ' -r HEAD --show-item revision']);
%check the current revision of your local svn folder
[~, local_rev] = system(['svn info ', svnPath.localFolder, ' --show-item revision']);
if str2double(url_rev) ~= str2double(local_rev) % If revisions are not same
% Update the svn for the new change
[updt_sts,updt_msg] = system(['svn update ', svnPath.localFolder);
% Return a zero if the command run successfully and svn get updated
if updt_sts == 0
% Display what's actually updated
disp(updt_msg);
end
else % If revisions are same
fprintf('No change in SVN since last update\n');
end

Kategorien

Mehr zu Source Control Integration finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by