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 --listYou should see
(သင်၏ name နှင့် email ကို Git တွင် set လုပ်ပြီးသွားမည်။ နောက်ပိုင်း commit များတွင် ဤအချက်အလက်များ ပါဝင်မည်ဖြစ်သည်။)