This guide will demonstrate how to mirror an SVN into a Git repo. You're the target audience if you're an SVN user, just getting started with Git and need to coax your project team over to Git.
The branching scenario has been simplified for clarity.
| #include <Entity/Rail.hpp> | |
| #include <Entity/RailSignalBase.hpp> | |
| #include <Rail/RailBlock.hpp> | |
| #include <Rail/RailPath.hpp> | |
| #include <Rail/TrainPathFinder.hpp> | |
| #include <Rail/RailSegment.hpp> | |
| #include <Rail/RailUtil.hpp> | |
| #include <Rail/Train.hpp> | |
| #include <Util/Container/MinHeap.hpp> | |
| #include <Log.hpp> |
| <script> | |
| // Good addition to YAMM (Yet Another Mega Menu) for BS3 | |
| // Just add to footer area | |
| // Slows down the opening of the menu so it doesn't fly open every time your mouse touches it. | |
| // fadeIn / fadeOut adjust the time it takes for the menu to open or close | |
| $('.dropdown').hover(function() { | |
| $(this).find('.dropdown-menu').stop(true, true).delay(100).fadeIn(100); | |
| }, function() { | |
| $(this).find('.dropdown-menu').stop(true, true).delay(10).fadeOut(100); | |
| }); |
| var appDirectives = angular.module('appDirectives', []); | |
| /** | |
| * Add potential validation fields to form-control form elements (CakePHP 3 with Bootstrap) | |
| * | |
| * Requirement: $scope.errors contains option (validation) errors in default CakePHP 3 JSON response | |
| */ | |
| appDirectives.directive('formControl', function($compile) { | |
| return { | |
| restrict: 'C', //Match all elements with form-control class |