]> jspc29.x-matter.uni-frankfurt.de Git - mvdsensorcontrol.git/commitdiff
added links to start page, option to stay at current branch during checkout
authorJan Michel <j.michel@gsi.de>
Sat, 3 Aug 2013 20:36:32 +0000 (22:36 +0200)
committerJan Michel <j.michel@gsi.de>
Sat, 3 Aug 2013 20:36:32 +0000 (22:36 +0200)
index.pl
tools/gitupdate.pl

index 0a2a0081df209e54c609a73c6ec6f598fd277565..c7dfc829d6e75cb5d52b94e789a33840fe094df4 100755 (executable)
--- a/index.pl
+++ b/index.pl
@@ -27,15 +27,18 @@ Guess what? We didn't write any!
 
 <h3>Monitoring and Control Features</h3>
 <div class="index">
-<ul><a href="tools/jtageditor.pl">Edit JTAG configuration files</a>
-<li><a href=""></a>
+<ul>
+<li><a href="tools/jtageditor.pl">Edit JTAG configuration files</a>
+<li><a href="tools/testgui.pl">Quick Analysis of sensor data</a>
+<li><a href="http://cerberus.x-matter.uni-frankfurt.de:8000/tools/pwr">Power Supply Control</a>
 </ul>
 </div>
 
 <h3>Update</h3>
 <div class="index">
 <ul>
-<li><a href="tools/gitupdate.pl?master">Check-out the stable branch without config files</a>
+<li><a href="tools/gitupdate.pl?master">Check-out the master branch without config files</a>
+<li><a href="tools/gitupdate.pl?current">Check-out the currently selected branch without config files</a>
 <li>Check-out the stable branch including config files: add -config to URL
 </div>
 
index 1bbf85882ceb661c0e3f84af7984a178aa4a45cc..246db1434da8717a79c598d866931205424fdd2b 100755 (executable)
@@ -39,8 +39,10 @@ cmd("git checkout -- ../config ../temp");
 print "Pulling new data from server\n";
 cmd("git pull ");
 
-print "Changing to branch $commands[0].\n";
-cmd("git checkout $commands[0]");
+unless($commands[0] eq "current") {
+  print "Changing to branch $commands[0].\n";
+  cmd("git checkout $commands[0]");
+  }
 
 
 unless (defined $commands[1] && $commands[1] eq "config") {