aboutsummaryrefslogtreecommitdiff
path: root/src/tools/git-memo/index.ts
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-04-12 13:24:14 +0200
committerGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-04-12 13:24:14 +0200
commit5cd9997a845f6d5f82d3ae74d3ec12603224517d (patch)
tree24566dfa56e496fb2cd37614ed25ffedc7fb5e4e /src/tools/git-memo/index.ts
parent889d59499212a449ee460c68c480648e337a7ecb (diff)
downloadit-tools-5cd9997a845f6d5f82d3ae74d3ec12603224517d.tar.gz
it-tools-5cd9997a845f6d5f82d3ae74d3ec12603224517d.tar.zst
it-tools-5cd9997a845f6d5f82d3ae74d3ec12603224517d.zip
feat(tool): git memo
Diffstat (limited to 'src/tools/git-memo/index.ts')
-rw-r--r--src/tools/git-memo/index.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/git-memo/index.ts b/src/tools/git-memo/index.ts
new file mode 100644
index 0000000..f1da354
--- /dev/null
+++ b/src/tools/git-memo/index.ts
@@ -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,
+};