master
branch is always production-ready, deployable, 100% green test suite- New development is done on feature branches, with frequent rebasing onto master
- Clean commit history by preferring to rebase instead of merge (
git pull
is configured to automatically rebase)
This file contains 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
// Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/ | |
// See also: http://www.paulund.co.uk/change-url-of-git-repository | |
$ cd $HOME/Code/repo-directory | |
$ git remote rename origin bitbucket | |
$ git remote add origin https://github.com/mandiwise/awesome-new-repo.git | |
$ git push origin master | |
$ git remote rm bitbucket |
- Make sure your gridsome dev server is running:
cd frontend
and thenyarn dev
ornpm run dev
- Install JS GraphQL plugin: https://jimkyndemeyer.github.io/js-graphql-intellij-plugin/
- Select everything inside
<page-query>
, click the light bulb icon, choose "Inject language or reference" and select GraphQL, like this:
NOTE: you only have to do this once and then all your .vue files will support GraphQL queries inside <page-query>
tags.