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>"
| // Type definitions for react-table 7 | |
| // Project: https://github.com/tannerlinsley/react-table#readme | |
| // Definitions by: Grsmto <https://github.com/grsmto> | |
| // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | |
| // TypeScript Version: 3.0 | |
| declare module 'react-table' { | |
| export type Cell = { | |
| render: (type: string) => any; | |
| getCellProps: () => any; | |
| column: Column; |
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>"
| const path = require('path') | |
| const rootDir = path.resolve(__dirname, '..') | |
| module.exports = { | |
| /** resolves from test to snapshot path */ | |
| resolveSnapshotPath: (testPath, snapshotExtension) => { | |
| return testPath.replace('src/', '__snapshots__/') + snapshotExtension | |
| }, |
| import { Link } from 'react-router-dom' | |
| import { Badge, Col, Menu } from 'antd' | |
| const StyledBadge = styled(Badge)` | |
| .ant-badge-count { | |
| background-color: #7ECBBF; | |
| color: white; | |
| box-shadow: 0 0 0 1px #d9d9d9 inset; | |
| } | |
| ` |
| git fetch --all -p; git branch -vv | grep ": gone]" | awk '{ print $1 }' | xargs -r -n 1 git branch -D |