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

git clone

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

git clone command ကို remote repository တစ်ခု (e.g., GitHub မှ) ၏ copy တစ်ခုကို သင်၏ local machine တွင် download လုပ်ရန် အသုံးပြုသည်။

bash
# Clone a repository from a GitHub URL
git clone https://github.com/owner/repo.git
You should see
(Remote repository ၏ project files အားလုံးနှင့် git history အပြည့်အစုံကို သင့် computer ထဲသို့ download လုပ်သွားမည်)
git clone | Thuta Learning