aboutsummaryrefslogtreecommitdiff
path: root/src/tools/git-memo/index.ts
blob: c91ee813b3894b6c37778304cc6802c233b8e95e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { BrandGit } from '@vicons/tabler';
import { defineTool } from '../tool';

export const tool = defineTool({
  name: 'Git cheatsheet',
  path: '/git-memo',
  description:
    'Git is a decentralized version management software. With this cheatsheet you will have a quick access to the most common git commands.',
  keywords: ['git', 'push', 'force', 'pull', 'commit', 'amend', 'rebase', 'merge', 'reset', 'soft', 'hard', 'lease'],
  component: () => import('./git-memo.vue'),
  icon: BrandGit,
});