|
80 | 80 | "definition": "Repository তে কিছু কমিট করা (কমিট মেসেজসহ)", |
81 | 81 | "code": "git commit -m \"YourCommitMessage\"" |
82 | 82 | }, |
83 | | - |
84 | | - { |
| 83 | + { |
85 | 84 | "definition": "Repository তে লোকাল ব্রাঞ্চ থেকে আপলোড করা", |
86 | 85 | "code": "git push -u origin [branchName]" |
87 | 86 | }, |
|
113 | 112 | "definition": "রিমোট ব্রাঞ্চ রিমুভ করতে", |
114 | 113 | "code": "git push --delete origin [branch-name]" |
115 | 114 | }, |
116 | | - |
117 | 115 | { |
118 | 116 | "definition": "ট্যাগ লিস্ট দেখতে", |
119 | 117 | "code": "git tag" |
|
130 | 128 | "definition": " কমিট লগ সামারি আকারে দেখতে((৫টি)", |
131 | 129 | "code": "git log --oneline -5" |
132 | 130 | }, |
133 | | - { |
| 131 | + { |
134 | 132 | "definition": " কমিট লগ ইউজার অনুযায়ী দেখতে", |
135 | 133 | "code": "git shortlog" |
136 | 134 | }, |
|
150 | 148 | "definition": "Repository থেকে নতুন চেঞ্জ গুলো pull করা", |
151 | 149 | "code": "git pull" |
152 | 150 | }, |
153 | | - { |
154 | | - "definition": "Fork Repository ক্ষেত্রে upstream রিমোট কনফিগার করা", |
155 | | - "code": "git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git" |
156 | | - }, |
157 | | - { |
158 | | - "definition": "Fork Repository কে upstream এর সাথে up-to-date রাখা", |
159 | | - "code": "git fetch upstream" |
160 | | - } |
| 151 | + { |
| 152 | + "definition": "Fork Repository ক্ষেত্রে upstream রিমোট কনফিগার করা", |
| 153 | + "code": "git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git" |
| 154 | + }, |
| 155 | + { |
| 156 | + "definition": "Fork Repository কে upstream এর সাথে up-to-date রাখা", |
| 157 | + "code": "git fetch upstream" |
| 158 | + }, |
| 159 | + { |
| 160 | + "definition": "কন্ট্রিবিউটরদের নামের লিস্ট দেখা", |
| 161 | + "code": "git shortlog -sn" |
| 162 | + }, |
| 163 | + { |
| 164 | + "definition": "কন্ট্রিবিউটরদের নাম এবং তাঁদের সকল কমিট লিস্ট অাকারে দেখা", |
| 165 | + "code": "git shortlog" |
| 166 | + } |
161 | 167 | ] |
162 | 168 | } |
163 | 169 | ] |
|
0 commit comments