File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 {
99 "title" : " প্রাথমিক কনফিগারেশন" ,
1010 "items" : [
11+ {
12+ "definition" : " গিট ইনস্টল ম্যাক" ,
13+ "code" : " brew install git"
14+ },
15+ {
16+ "definition" : " গিট আনইনস্টল ম্যাক" ,
17+ "code" : " brew remove git"
18+ },
19+ {
20+ "definition" : " গিট আনইনস্টল উবুন্টু" ,
21+ "code" : " sudo apt-get remove git"
22+ },
23+ {
24+ "definition" : " গিট ইনস্টল উবুন্টু" ,
25+ "code" : " sudo apt-get install git"
26+ },
1127 {
1228 "definition" : " গিট ভার্সন চেক" ,
1329 "code" : " git --version"
1632 "definition" : " গিট ইউজার নেম সেট করা " ,
1733 "code" : " git config --global user.name \" username\" "
1834 },
35+ {
36+ "definition" : " গিট ইউজার নেম চেক করা " ,
37+ "code" : " git config user.name"
38+ },
1939 {
2040 "definition" : " গিট ইউজার ইমেল সেট করা" ,
2141 "code" : " git config --global user.email \" user@name.com\" "
2242 },
43+ {
44+ "definition" : " গিট ইউজার ইমেল চেক করা" ,
45+ "code" : " git config user.email"
46+ },
2347 {
2448 "definition" : " গিট ইউজার নেম বাতিল করা" ,
2549 "code" : " git config --global --unset-all user.name"
You can’t perform that action at this time.
0 commit comments