Tag: GIT

  • Pulling from a Remote GIT Branch

    To set up your local GIT repository to pull from a new remote branch which another developer has created, you first have to update the list of branches by issuing the command $ git pull Then once you have the latest branch information, you can view all the remote branches. $ git branch -r origin/recording…