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

git push

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

git push command ကို သင်၏ local repository မှ commits များကို remote repository သို့ upload လုပ်ရန် အသုံးပြုသည်။

bash
# Push changes from your local 'main' branch
# to the remote named 'origin'
git push origin main
You should see
(သင်၏ local commits များ remote server (e.g., GitHub) ပေါ်သို့ ရောက်ရှိသွားမည်)
git push | Thuta Learning