Skip to content

Commit 41b0191

Browse files
committed
added github cli: auth, repo-create, repo-others
1 parent d9bc977 commit 41b0191

1 file changed

Lines changed: 92 additions & 0 deletions

File tree

data/github-cli.json

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
{
2+
"id": "github-cli",
3+
"title": "গিটহাব সিএলআই",
4+
"slug": "github-cli",
5+
"description": "",
6+
"colorPref": "#121f54",
7+
"contents": [
8+
{
9+
"title": "অথেনটিকেশন",
10+
"items": [
11+
{
12+
"definition": "ব্রাউজারে অথোরাইজেশন",
13+
"code": "gh auth login -w"
14+
},
15+
{
16+
"definition": "টেক্সট ফাইল থেকে টোকেন নিয়ে অথেনটিকেশন",
17+
"code": "gh auth login --with-token < <টেক্সট ফাইলের নাম>"
18+
},
19+
{
20+
"definition": "লগ-আউট",
21+
"code": "gh auth logout"
22+
},
23+
{
24+
"definition": "পূর্ববর্তী সময়ে লগিন করা ক্রেডেনশিয়ালের রিড/রাইড পারমিশন পরিবর্তন",
25+
"code": "gh auth refresh"
26+
},
27+
{
28+
"definition": "অথেনটিকেশনের স্ট্যাটাস দেখতে",
29+
"code": "gh auth status"
30+
}
31+
]
32+
},
33+
{
34+
"title": "গিটহাব রিপোজিটোরি বানানো",
35+
"items": [
36+
{
37+
"definition": "বর্তমান ডিরেকটরি ব্যবহার করে গিটহাবে নিজের একাউন্টে রিপোজিটোরি বানানো",
38+
"code": "gh repo create"
39+
},
40+
{
41+
"definition": "নির্দিষ্ট নামে রিপোজিটোরি",
42+
"code": "gh repo create <রিপোজিটোরির নাম>"
43+
},
44+
{
45+
"definition": "একটি অর্গানাইজেশনে নির্দিষ্ট নামে রিপোজিটোরি বানানো",
46+
"code": "gh repo create <অর্গানাইজেশনের নাম>/<রিপোজিটোরির নাম>"
47+
},
48+
{
49+
"definition": "প্রাইভেট রিপোজিটোরি",
50+
"code": "gh repo create <রিপোজিটোরির নাম> --private"
51+
},
52+
{
53+
"definition": "রিপোজিটোরির বর্ণনা",
54+
"code": "gh repo create <রিপোজিটোরির নাম> -d \"রিপোজিটোরির বর্ণনা\""
55+
},
56+
{
57+
"definition": "টেমপ্লেট রিপোজিটোরি ব্যবহার করে নতুন রিপোজিটোরি বানানো",
58+
"code": "gh repo create <রিপোজিটোরির নাম> -p \"টেমপ্লেট\""
59+
}
60+
]
61+
},
62+
{
63+
"title": "রিপোজিটোরির অন্যান্য",
64+
"items": [
65+
{
66+
"definition": "বর্তমান ডিরেকটরিতে একটি রিপোজিটোরি ক্লোন করা",
67+
"code": "gh repo clone <অথোর কিংবা অর্গানাইজেশনের ইউজারনেম>/<রিপোজিটোরির নাম>"
68+
},
69+
{
70+
"definition": "পূর্ববর্তী কমান্ডের উদাহরণ (ডেভসংকেত ক্লোন)",
71+
"code": "gh repo clone devsonket/devsonket.github.io"
72+
},
73+
{
74+
"definition": "নির্দিষ্ট একটি ডিরেকটরিতে রিপোজিটোরি ক্লোন করা",
75+
"code": "gh repo clone <অথোর কিংবা অর্গানাইজেশনের ইউজারনেম>/<রিপোজিটোরির নাম> <ডিরেকটরির পাথ>"
76+
},
77+
{
78+
"definition": "রিপোজিটোরি ফর্ক করা",
79+
"code": "gh repo fork <অথোর কিংবা অর্গানাইজেশনের ইউজারনেম>/<রিপোজিটোরির নাম>"
80+
},
81+
{
82+
"definition": "একটি রিপোজিটোরির বর্ণনা ও রিডমি দেখা",
83+
"code": "gh repo view <অথোর কিংবা অর্গানাইজেশনের ইউজারনেম>/<রিপোজিটোরির নাম>"
84+
},
85+
{
86+
"definition": "একটি রিপোজিটোরির বর্ণনা ও রিডমি ব্রাউজারে দেখা",
87+
"code": "gh repo view <অথোর কিংবা অর্গানাইজেশনের ইউজারনেম>/<রিপোজিটোরির নাম> -w"
88+
}
89+
]
90+
}
91+
]
92+
}

0 commit comments

Comments
 (0)