mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 00:06:15 -04:00
feat(tool): git memo
This commit is contained in:
parent
889d594992
commit
5cd9997a84
11 changed files with 504 additions and 18 deletions
11
src/tools/git-memo/index.ts
Normal file
11
src/tools/git-memo/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
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 sofware. With this cheatsheet you will have a quick acces to the most common git commands.',
|
||||
keywords: ['git', 'push', 'force', 'pull', 'commit', 'ammend', 'rebase', 'merge', 'reset', 'soft', 'hard', 'lease'],
|
||||
component: () => import('./git-memo.vue'),
|
||||
icon: BrandGit,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue