This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Carlos Arrastia (Holvi) 2017 | |
# | |
# This script adds the git command "cor" which stands for CheckOut Recent. | |
# it lists the 10 most recently checked out branches and allows the user to select | |
# one for check out | |
# | |
# Usage: | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Decorator adapted out of Angular 1.3.8 | |
// https://github.com/angular/angular.js/blob/v1.3.8/src/ng/rootScope.js#L196 | |
.config(['$provide', function($provide) { | |
// Minification-safe hack. | |
var $$watchers = '$$watchers', | |
$$nextSibling = '$$nextSibling', | |
$$childHead = '$$childHead', | |
$$childTail = '$$childTail', | |
$$listeners = '$$listeners', |