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

git log

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

git log command ကို repository ၏ commit history ကို ကြည့်ရန် အသုံးပြုသည်။ Commit တိုင်း၏ ID (hash), author, date, နှင့် message ကို ပြသသည်။

bash
git log
You should see
commit a1b2c3d4e5f6... (HEAD -> master) Author: Your Name Date: Fri Sep 26 12:00:00 2025 +0630 Add initial project files
git log | Thuta Learning