-- Fetch all branches from the remote repository
git fetch
-- List all branches, including remote branches
git branch -a
-- Create a new local branch tracking the remote branch
git checkout -b feature-branch origin/feature-branch
-- Verify that you are on the new branch
git branch