git clone --depth 1 [REPO_PATH]
git fetch --unshallow
git remote set-branches origin [SPECIFIC-BRANCH or * for all branches]
| var GLOBAL_NAME = {}; | |
| ;(function($, window, document){ | |
| 'use strict'; | |
| var PLUGIN_NAME = this.PLUGIN_NAME = function(element, options){ | |
| this.element = $(element); | |
| this.options = $.extend({}, this.options, options); | |
| this.initialise(); |
| /* https://github.com/DimitarChristoff/primish/ */ | |
| /* requires: [primish.js, options.js] */ | |
| /* Example... */ | |
| var App = App = {}; | |
| ;(function(Class, window, document){ | |
| "use strict"; |
| .triangle-up { | |
| border-bottom: 10px solid red; | |
| border-left: 10px solid transparent; | |
| border-right: 10px solid transparent; | |
| height: 0; | |
| width: 0; | |
| } | |
| .triangle-down { |
| function isEven(value) { | |
| if (value%2 === 0) | |
| return true; | |
| else | |
| return false; | |
| } |
| .widthCalc(@width, @minus) { | |
| width: ~"-webkit-calc(@{width} - @{minus})"; | |
| width: ~"calc(@{width} - @{minus})"; | |
| } |
| [diff] | |
| tool = bc3 | |
| [difftool] | |
| prompt = false | |
| [difftool "bc3"] | |
| cmd = \"C:/Program Files (x86)/Beyond Compare 4/bcomp.exe\" \"$LOCAL\" \"$REMOTE\" | |
| [merge] | |
| tool = bc3 | |
| [mergetool] | |
| prompt = false |
| // Use snippet below to disable console.X if not supported to prevent JS errors | |
| if(typeof console === 'undefined') { | |
| console = { | |
| log: function() { }, | |
| debug: function() { }, | |
| table: function() { } | |
| }; | |
| } |
Ctrl+U - Clear all left of cursor
Ctrl+C - Cancel the current command/line
Ctrl+A - Goto the beginning of the line
Ctrl+E - Goto the end of the line
Ctrl+K - Remove all to the right
Ctrl+W - Remove whole word to the left
Ctrl+Y - Reinstate deleted command
Ctrl+L - Scroll prompt to top
| .chosen-container { | |
| position: relative; | |
| -webkit-user-select: none; | |
| -moz-user-select: none; | |
| user-select: none; | |
| width: auto !important; // Overwrite style set with JS | |
| ul { | |
| margin: 0; | |
| padding: 0; |