Git -> Taking clone from a specific remote branch and raising PR request to that branch
It might be that sometime in a project, someone will say, you to take a clone from a specific branch (not from master) and will request you to push your changes or raise PR for that branch. In such situation, below commands can help you:
1. First check all the branches in remote
git branch -r
It will show you all the branches available in remote. It should have the requested branch also.
2. For example, here I am creating a new branch development.
3. Now when I will do git branch -r , then it will show me this branch. (Git pull is pre-requisite here)