git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
#!/bin/bash | |
# we are assuming VMware tools are ready to be installed. Click Tools - Reinstall VMware tools if needed | |
# if you copy/paste this instead of using in a shell, be sure to use your login in place of $USER, below | |
cd ~/ | |
# Ensure there's a ~/Downloads directory | |
if [ ! -d "Downloads" ]; then | |
mkdir ~/Downloads | |
fi | |
cd ~/Downloads/ |
#!/bin/bash | |
# intially generated from http://bashrcgenerator.com/ with additional modificationas | |
# | |
# creates prompt like this with username and directory path on one line, then most recent error code number and $ on next line: | |
# gojimmypi@ubuntu : ~ | |
# 0 $ | |
# | |
# prior version, no GitHub branch | |
# export PS1="\[\033[38;5;2m\]\u@\h\[$(tput sgr0)\]\[\033[38;5;15m\] : \[$(tput sgr0)\]\[\033[38;5;11m\]\w\[$(tput sgr0)\]\[\033[38;5;15m\]\n\$? \\$ \[$(tput sgr0)\]" |
pre { | |
overflow-x:scroll; | |
overflow-y:scroll; | |
background: black; | |
color:LawnGreen; | |
padding: 10px 16px; | |
border-radius: 2px; | |
border-top: 4px solid #00aeef; | |
-moz-box-shadow: inset 0 0 10px #000; | |
box-shadow: inset 0 0 10px #000; |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream