Thuta Learning
ရှာဖွေရန်
BasicDevOps & Toolsbeginner

Basic Configuration

စိတ်လျှော့ပါ။ ဒီခန်းကို စာအုပ်လိုမဟုတ်ဘဲ စကားပြောသလိုပဲ၊ နားလည်လွယ်အောင် ရှင်းပါမယ်။

Git ကို install လုပ်ပြီးနောက် ပထမဆုံးလုပ်ဆောင်ရမည်မှာ သင်၏ user name နှင့် email ကို configure လုပ်ခြင်းဖြစ်သည်။ သင်ပြုလုပ်သော commit တိုင်းတွင် ဤ information များပါဝင်မည်ဖြစ်သည်။

bash
# Set your user name
git config --global user.name "Your Name"

# Set your email address
git config --global user.email "your.email@example.com"

# Check your settings
git config --list
You should see
(သင်၏ name နှင့် email ကို Git တွင် set လုပ်ပြီးသွားမည်။ နောက်ပိုင်း commit များတွင် ဤအချက်အလက်များ ပါဝင်မည်ဖြစ်သည်။)
Basic Configuration | Thuta Learning