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
https://stackoverflow.com/questions/30443333/error-with-renamed-repo-in-github-remote-this-repository-moved-please-use-th | |
" | |
git remote set-url origin [updated link url https://........git] | |
" |
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
// imported into every page (not component necessarily) | |
/* | |
.... | |
import SEO from "../components/seo" | |
const NotFoundPage = () => ( | |
<Layout> | |
<SEO title="404: Not found" /> | |
.... | |
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
for reference: | |
https://youtu.be/fnSRBRiQIU8?t=250 | |
In uncreated git repo. | |
CLI: | |
git init | |
git add . | |
git commit -m "init commit" |
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
/* | |
flex-direction: row; | |
flex-wrap: nowrap; | |
*/ | |
4. ul { display: flex; flex-flow: ***;} | |
flex-flow is shorthand for flex-direction and flex-wrap | |
It takes two arguments, just like the individual properties. | |
Example: row wrap, row-reverse wrap, column nowrap, column-reverse wrap-reverse, etc | |
Just because the row/column is reversed does not mean the wrap has to be reversed |