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 ဖြင့် စစ်ဆေးကြည့်နိုင်သည်)