I have a general doubt. Suppose there is a git repo with master branch as development branch and you want to make some changes without effecting master branch and then you want to merge it later. What is the better approach?
- Create new branch in same repo and then merge it to master.
- Create new repo by forking and then merge it to master.