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-featureYou should see
Switched to branch 'new-feature'