Skip to content

Commit 81bd58b

Browse files
committed
added git cheat sheet
1 parent bfe2537 commit 81bd58b

1 file changed

Lines changed: 73 additions & 0 deletions

File tree

data/git.json

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"id": "git-cheat-sheet",
3+
"title": "গিট",
4+
"slug": "git-cheat-sheet",
5+
"description": "গিট এর চিটশিট",
6+
"colorPref": "#000",
7+
"contents": [
8+
{
9+
"title": "কনফিগার প্রাথমিক",
10+
"items": [
11+
{
12+
"definition": "গিট ভার্সন চেক ",
13+
"code": "git --version"
14+
},
15+
{
16+
"definition": "গিট ইউজার নেম সেট করা ",
17+
"code": "git config --global user.name "username" "
18+
},
19+
{
20+
"definition": "গিট ইউজার ইমেল সেট করা",
21+
"code": "git config --global user.email "user@name.com" "
22+
},
23+
{
24+
"definition": "গিট ইউজার নেম বাতিল করা",
25+
"code": "git config --global --unset-all user.name"
26+
},
27+
{
28+
"definition": "গিট ইউজার ইমেইল বাতিল করা",
29+
"code": "git config --global --unset-all user.email"
30+
}
31+
]
32+
},
33+
{
34+
"title": "Repository কমান্ডস ",
35+
"items": [
36+
{
37+
"definition": "নতুন Repository তৈরী করা",
38+
"code": "git init"
39+
},
40+
{
41+
"definition": "নতুন অথবা পুরানো, কি কি ফাইল কমিট করতে হবে",
42+
"code": "git status"
43+
},
44+
{
45+
"definition": "কমিট এর জন্যে ফাইল এড ",
46+
"code": "git add [file]"
47+
},
48+
{
49+
"definition": "Repository এর কমিট ",
50+
"code": "git commit -m "initial commit""
51+
},
52+
{
53+
"definition": "সব ব্রাঞ্চ এর নাম লিস্ট ",
54+
"code": "git branch"
55+
},
56+
{
57+
"definition": "নতুন ব্রাঞ্চ তৈরী ",
58+
"code": "git branch [branch_name]"
59+
},
60+
{
61+
"definition": "ব্রাঞ্চ চেঞ্জ করতে ",
62+
"code": "git checkout [branch-name]"
63+
},
64+
{
65+
"definition": "ব্রাঞ্চ রিমুভ করতে ",
66+
"code": "git branch -d [branch-name]"
67+
}
68+
69+
70+
]
71+
}
72+
]
73+
}

0 commit comments

Comments
 (0)