CTRL + A
: Move the cursor to the beginning of the line
CTRL + E
: Move the cursor to the end of the line
OPTION + Left Arrow
: Move the cursor one word backward
OPTION + Right arrow
: Move the cursor one word forward
Left Arrow
: Move the cursor one character backward
Right Arrow
: Move the cursor one character forward
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
var crypto = require('crypto'); | |
/** | |
* Generates and returns a Freshdesk Single Sign On URL | |
* {@link https://gist.github.com/derekseymour/26a6fe573c1274642976 Gist} | |
* | |
* @author Derek Seymour <[email protected]> | |
* @param {String} name - The name of the user logging in. | |
* @param {String} email - A valid email address to associate with the user. |
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"