Skip to content

Commit 98580c5

Browse files
authored
Merge pull request #49 from niyazed/patch-2
added some new command in git
2 parents 8de4702 + 1276274 commit 98580c5

1 file changed

Lines changed: 22 additions & 8 deletions

File tree

data/git.json

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
}, {
3333
"title": "Repository কমান্ডসমূহ ",
3434
"items": [
35+
{
36+
"definition": "কোনো Repository ক্লোন করা(লোকাল মেশিনে ডাউনলোড করা)",
37+
"code": "git clone [url]"
38+
},
3539
{
3640
"definition": "নতুন Repository তৈরী করা",
3741
"code": "git init"
@@ -44,23 +48,28 @@
4448
"definition": "কমিট এর জন্যে ফাইল এড করা",
4549
"code": "git add [file]"
4650
},
47-
{
51+
{
4852
"definition": "কমিট এর জন্যে সব পরিবর্তিত ফাইল এড করা",
4953
"code": "git add ."
5054
},
5155
{
5256
"definition": "Repository তে কিছু কমিট করা (কমিট মেসেজসহ)",
5357
"code": "git commit -m \"YourCommitMessage\""
5458
},
59+
60+
{
61+
"definition": "Repository তে লোকাল ব্রাঞ্চ থেকে আপলোড করা",
62+
"code": "git push -u origin [branchName]"
63+
},
5564
{
5665
"definition": "সব লোকাল ব্রাঞ্চ এর নাম লিস্ট করা",
5766
"code": "git branch"
5867
},
59-
{
68+
{
6069
"definition": "সব রিমোট ব্রাঞ্চ এর নাম লিস্ট করা",
6170
"code": "git branch -r"
6271
},
63-
{
72+
{
6473
"definition": "সব লোকাল এবং রিমোট ব্রাঞ্চ এর নাম লিস্ট করা",
6574
"code": "git branch -a"
6675
},
@@ -76,23 +85,24 @@
7685
"definition": "ব্রাঞ্চ রিমুভ করতে",
7786
"code": "git branch -d [branch-name]"
7887
},
79-
{
88+
{
8089
"definition": "রিমোট ব্রাঞ্চ রিমুভ করতে",
8190
"code": "git push --delete origin [branch-name]"
8291
},
83-
{
92+
93+
{
8494
"definition": "ট্যাগ লিস্ট দেখতে",
8595
"code": "git tag"
8696
},
87-
{
97+
{
8898
"definition": "ট্যাগ তৈরি করতে",
8999
"code": "git tag [tag-name]"
90100
},
91-
{
101+
{
92102
"definition": "কমিট লগ বিস্তারিত দেখতে",
93103
"code": "git log"
94104
},
95-
{
105+
{
96106
"definition": " কমিট লগ সামারি আকারে দেখতে((৫টি)",
97107
"code": "git log --oneline -5"
98108
},
@@ -111,6 +121,10 @@
111121
{
112122
"definition": "অন্য Repository থেকে ব্রাঞ্চ/রেফ/অবজেক্ট fetch করা",
113123
"code": "git fetch RepositoryName"
124+
},
125+
{
126+
"definition": "Repository থেকে নতুন চেঞ্জ গুলো pull করা",
127+
"code": "git pull"
114128
}
115129
]
116130
}

0 commit comments

Comments
 (0)