From 9023598b35aef009e41271993eeb57242548baaf Mon Sep 17 00:00:00 2001 From: mirajehossain Date: Fri, 30 Nov 2018 14:29:09 +0600 Subject: [PATCH 1/2] add command for fork repository --- data/git.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/data/git.json b/data/git.json index deddddb8e..f86fc2a2a 100644 --- a/data/git.json +++ b/data/git.json @@ -125,7 +125,15 @@ { "definition": "Repository থেকে নতুন চেঞ্জ গুলো pull করা", "code": "git pull" - } + }, + { + "definition": "Fork Repository ক্ষেত্রে upstream রিমোট কনফিগার করা", + "code": "git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git" + }, + { + "definition": "Fork Repository কে upstream এর সাথে up-to-date রাখা", + "code": "git fetch upstream" + } ] } ] From 8afdb831d50252a7d2cf0a49e20872a437577b91 Mon Sep 17 00:00:00 2001 From: mirajehossain Date: Fri, 30 Nov 2018 17:03:11 +0600 Subject: [PATCH 2/2] remove type and duplicate shortcut --- data/shortcut-webstorm.json | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/data/shortcut-webstorm.json b/data/shortcut-webstorm.json index 8adbf446f..e12a32f1f 100644 --- a/data/shortcut-webstorm.json +++ b/data/shortcut-webstorm.json @@ -14,7 +14,7 @@ }, { "definition": "অটো ইন্ডেন্ট লাইন", - "code": "Ctrl + Alt + I`" + "code": "Ctrl + Alt + I" }, { "definition": "অটোকমপ্লিট সাজেশন সিলেক্ট করতে", @@ -47,7 +47,7 @@ }, { "definition": "ফাইল কপি", - "code": "F5`" + "code": "F5" }, { "definition": "ফাইল মুভ", @@ -58,18 +58,6 @@ { "title": "ন্যাভিগেশন", "items": [ - { - "definition": "ফাইলের নাম পরিবর্তন", - "code": "Shift + F6" - }, - { - "definition": "ফাইল কপি", - "code": "F5`" - }, - { - "definition": "ফাইল মুভ", - "code": "F6" - }, { "definition": "ফাইল খুজে ওপেন করা", "code": "Ctrl + Shift + N"