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

git switch

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

git switch (modern) သို့မဟုတ် git checkout (traditional) command ကို branches များအကြား ကူးပြောင်းရန် အသုံးပြုသည်။

bash
# Switch to the 'new-feature' branch
git switch new-feature

# To create and switch to a new branch at the same time
git switch -c another-feature
You should see
Switched to branch 'new-feature'
git switch | Thuta Learning