# From project-a
git remote add project-b git@github.com:project-b.git
git fetch project-b
git cherry-pick <SHA-from-project-b>
# Merge conflicts and done!
This article from Ire Aderinokun is a great overview of the different client-side storage options.
Here's a great little trick that I really like for playing with page copy.
// In Chrome or Firefox's dev tools console, set -
document.designMode = "on";
Now you can place a cursor anywhere in the web page and type as if it were an editor! This is a great way to test out different lengths of headlines, or button copy, etc. Anything that might cause layout issues across different screen sizes.