See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| You are an expert full-stack Nuxt developer working on a Nuxt 3 project. | |
| ## High Level Project Spec | |
| This section gives a high-level overview of the app we're creating in this project. | |
| - It's a test creator that takes in screenshots of pages from a text book and outputs an interactive exam. | |
| - The primary audience of this application is home school teachers who need to create tests for their students | |
| - Users expect a friendly but professional look and feel |
| import { shallowMount } from '@vue/test-utils' | |
| import { beforeEach, describe, test, vi, expect } from 'vitest' | |
| import { useRouter } from 'vue-router' | |
| import { RouteNames, router } from '../../router/router' | |
| import Home from './Home.vue' | |
| vi.mock('vue-router') | |
| describe('Home', () => { | |
| vi.mocked(useRouter).mockReturnValue({ |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| var states = [ | |
| { name: 'Alabama', abbrev: 'AL' }, | |
| { name: 'Alaska', abbrev: 'AK' }, | |
| { name: 'Arizona', abbrev: 'AZ' }, | |
| { name: 'Arkansas', abbrev: 'AR' }, | |
| { name: 'California', abbrev: 'CA' }, | |
| { name: 'Colorado', abbrev: 'CO' }, | |
| { name: 'Connecticut', abbrev: 'CT' }, | |
| { name: 'Delaware', abbrev: 'DE' }, | |
| { name: 'Florida', abbrev: 'FL' }, |
| In console: | |
| git config credential.helper | |
| You will see: osxkeychain | |
| git config credential.helper sourcetree | |
| Then if you perform git config credential.helper again | |
| You will see: sourcetree |
| [ | |
| { | |
| "stream": { | |
| "mature": false, | |
| "status": "Greg working on Electron-Vue boilerplate w/ Akira #programming #vuejs #electron", | |
| "broadcaster_language": "en", | |
| "display_name": "FreeCodeCamp", | |
| "game": "Creative", | |
| "language": "en", | |
| "_id": 79776140, |
| Key/Command | Description |
|---|---|
| Tab | Auto-complete files and folder names |
| Ctrl + A | Go to the beginning of the line you are currently typing on |
| Ctrl + E | Go to the end of the line you are currently typing on |
| Ctrl + U | Clear the line before the cursor |
| Ctrl + K | Clear the line after the cursor |
| Ctrl + W | Delete the word before the cursor |
| Ctrl + T | Swap the last two characters before the cursor |