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

git add

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

git add command ကို Working Directory မှ changes များကို Staging Area သို့ ထည့်ရန် အသုံးပြုသည်။ ၎င်းသည် Git ကို နောက် commit တွင် ဤ changes များကို ထည့်သွင်းရန် ပြောခြင်းဖြစ်သည်။

bash
# Stage a single file
git add filename.txt

# Stage all changes in the current directory
git add .
You should see
(File(s) များကို staging area သို့ ပေါင်းထည့်လိုက်သည်။ git status ဖြင့် စစ်ဆေးကြည့်နိုင်သည်)
git add | Thuta Learning