Git is a wonderful tool for code repository management. But sometimes it is little confusing to work over remote branches. Here is a small guided example regarding how to work with git remote branch. The following details covers only the basics to start working with remote branches.
Let’s take an actual git repository and do some testing of various git commands. I am using the RouteFlow repository here. You can go ahead and use any other repository you want.
First let us checkout the git repo. We can do this using "git clone"
command which asks the [url]
of the repo as an argument to clone locally. Read More »