diff --git a/README.md b/README.md
index ff9d5e8..753123d 100644
--- a/README.md
+++ b/README.md
@@ -78,12 +78,14 @@ The biggest grievance when working with remotes is the "git pull" command. Which
get | git equivalent
--- | --------------
-get clone *PATH* | git clone --recurse-submodules [-b *branch*] *PATH*
- Paths like "username/repo" will be expanded to a Github URL.
- Paths like "repo" will be expanded to a Github url if your username is stored in git config.
- Paths ending with #*branch* (the URL style used by NPM and Bower) will clone that branch.
+get clone *PATH* | git clone --recurse-submodules [-b *branch*] *PATH* - Paths like "username/repo" will be expanded to a Github URL.
- Paths like "repo" will be expanded to a Github url if your username is stored in git config.\*
- Paths ending with #*branch* (the URL style used by NPM and Bower) will clone that branch.
get fetch | Fetches all remotes and fast-forwards local branches when possible
get fetch *branches* | Fetches and fast-forwards the specified branches
get push | pushes to upstream. - If upstream not set, prompt user to name a remote branch.
- If multiple remotes exist, prompt for which remote to use.
get remote | Interactive prompt to add a remote.
+\* To save your Github username where `get` can see it: `git config --global github.user your_user_name`
+
#### Miscellaneous
get | git equivalent