<ul>
<li><a href="tools/gitupdate.pl?stable">Check-out the stable branch without config files</a>
<li><a href="tools/gitupdate.pl?stable-config">Check-out the stable branch with config files</a>
-<li><a href="tools/gitupdate.pl?devel">Check-out the devel branch without config files</a>
-<li><a href="tools/gitupdate.pl?devel-config">Check-out the devel branch with config files</a>
+<!--<li><a href="tools/gitupdate.pl?devel">Check-out the devel branch without config files</a>
+<li><a href="tools/gitupdate.pl?devel-config">Check-out the devel branch with config files</a>-->
</div>
</body>
--- /dev/null
+Here are all temporary files that are not supposed to be in /tmp for whatever reason.
+
+Don't put a file named 'config' here, it will be deleted!
+#!/usr/bin/perl
+print "Content-type: text/plain\n";
+print "\n\n";
+
+use warnings;
+use Data::Dumper;
+use CGI::Carp qw(fatalsToBrowser);
+
+my $query = $ENV{'QUERY_STRING'};
+
+sub cmd {
+ my @x = qx(cmd." 2>&1");
+ print Dumper @x;
+}
+
+
+print "Running Git Update\n";
+
+unless ($query =~ m/stable/) {
+ print "Function not implemented.\n";
+ exit;
+ }
+
+
+unless ($query =~ m/config/) {
+ print "Copying configuration file folder\n";
+ cmd("cp -r ../config ../temp/config");
+ }
+
+
+print "Undoing changes in config files\n";
+cmd("git checkout -- ../config ../temp");
+
+
+unless ($query =~ m/config/) {
+ print "Copying configuration file folder back\n";
+ cmd("cp -r ../temp/config ../");
+
+ print "Removing temporary configuration file folder\n";
+ cmd("rm -r ../temp/config");
+ }
+
+