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

What is Git?

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

Git သည် Linus Torvalds မှ ဖန်တီးခဲ့သော free and open source distributed version control system (VCS) တစ်ခုဖြစ်သည်။ Version Control ဆိုသည်မှာ အချိန်နှင့်အမျှ file များ၏ changes များကို ခြေရာခံသော system ဖြစ်သည်။ ၎င်းသည် developer များကို project history ကို ပြန်ကြည့်ရန်၊ အမှားများပြင်ဆင်ရန်၊ နှင့် team members များစွာဖြင့် တစ်ပြိုင်နက်တည်း အလုပ်လုပ်နိုင်ရန် ကူညီပေးသည်။

bash
# Git is a command-line tool.
# You type commands into your terminal to interact with it.

git --version
You should see
(Terminal တွင် Git version number ပေါ်လာမည်) git version 2.39.2
What is Git? | Thuta Learning