Skip to content
Snippets Groups Projects
Commit 7241097d authored by Cristian Galperti's avatar Cristian Galperti
Browse files

tag forced, improved code ver message, todos added

parent b5036de5
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,14 @@ function writegitinfoheader()
curshot=mdsvalue('current_shot("tcv_shot")');
% then we try to tag the current rtccode repo
% TODO: check git repo cleanlyness, see script gittaglac
% TODO: clean build folders first, the generated .h is not
% checked for changes by the standard generated makefile
% it is enough to remove the primary model build folder
% (i.e. rm -rf SCD_rtccode_xx_xx*) so that submodels builds
% can be kept
tagname = ['builds/TCV' num2str(curshot)];
str=sprintf('Going to try this git tag: %s [(Y)es/(N)o/A(p)pend]?',tagname);
answ=input(str,'s');
......@@ -20,7 +28,7 @@ function writegitinfoheader()
end
tagmsg = input('Type git tag message here: ','s');
tagcmd = ['git tag ' tagname ' -m "' tagmsg '"'];
tagcmd = ['git tag -f ' tagname ' -m "' tagmsg '"'];
answ = input('Ok to tag [(Y)es/(N)o]?','s');
switch upper(answ)
......@@ -36,7 +44,7 @@ function writegitinfoheader()
return
end
taginfocmd = ['git for-each-ref refs/tags/' tagname ' --format="%(objectname) %(objecttype) %(refname) %(taggername) %(taggerdate) %(contents:subject)"'];
taginfocmd = ['git for-each-ref refs/tags/' tagname ' --format="RTCCODE TAG HASH: %(objectname:short) CONTENTS: %(contents:subject) TAGGER: %(taggername) %(taggerdate) FULL TAG INFO: %(objecttype) %(refname) %(objectname)"'];
[status,result] = system(taginfocmd);
if status~=0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment