Git Branching

« 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

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

Sending changes made in WebIDE to GitHub

« Previous Index Next » Earlier we had a discussion on Overview of Git-Pane in WebIDE where we discussed various capabilities of Git Pane present in WebIDE. Steps to be followed for sending changes made in WebIDE to GitHub: Branching: Decide which Branch you want to use for making changes. It may be a fair idea to use … Continue reading Sending changes made in WebIDE to GitHub