mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-22 22:59:37 +02:00
12 lines
499 B
TypeScript
12 lines
499 B
TypeScript
import { BrandGit } from '@vicons/tabler';
|
|
import type { ITool } from '../tool';
|
|
|
|
export const tool: ITool = {
|
|
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,
|
|
};
|