Run this command to remember your password:
git config --global credential.helper 'cache --timeout 28800'Above command will tell git to cache your password for 8 hours.
| #!/bin/bash | |
| # Enable strict mode | |
| set -euo pipefail | |
| IFS=$'\n\t' | |
| #=============================================================================== | |
| # Constants and Global Configuration | |
| #=============================================================================== | |
| readonly DEFAULT_PROXY_SERVER="proxy.example.com" |
| /*global angular: true, google: true, _ : true */ | |
| 'use strict'; | |
| angular.module('geocoder', ['ngStorage']).factory('Geocoder', function ($localStorage, $q, $timeout) { | |
| var locations = $localStorage.locations ? JSON.parse($localStorage.locations) : {}; | |
| var queue = []; | |
| // Amount of time (in milliseconds) to pause between each trip to the |