You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What does each of these commands do?
pull -> updates your local repository
branch -> creates a new branch off of the current branch(in this case it would be master)
git checkout -> 'checks out' the newly created branch
You can combine branch and checkout into a single command
git checkout -b new_branch
git clone https://github.com/BYU-AGV/tutorials.git
git pull
git branch new_branch
git checkout new_branch
The text was updated successfully, but these errors were encountered: