« Previous Index Next » Branching is the creation of the replica of a particular branch so that parent branch remains unaffected. New branch can have new features and can be used later to merge with parent branch. Create a new Local branch: Select the Branch which you consider as Parent branch(say 'master' in this case). … Continue reading Git Branching
Tag: push
Multiple Developers working on the same file
« Previous Index Next » "Multiple Developers working on the same file" can be a day in a life scenario and can happen anytime in during collaborative development. There can be two main scenarios in this case: Assumption: For both the scenarios, both the Developers already have same Project Cloned in WebIDE. 1. In the first … Continue reading Multiple Developers working on the same file