|
The official Insoshi repository at GitHub includes the branches:
If you haven't pulled in updates from the official repository, you may need to run git fetch originto get the updated branch information. Running git branch -awill show all the remote origin branches (origin/*) that your local repository currently knows about. Developing against masterTo start local development using the Insoshi master branch as the starting point:git branch <localdev> origin/masterTo update a local development branch with the latest official Insoshi updates: git fetch origin Developing against edgeTo start local development using the Insoshi edge branch as the starting point:git branch <localdev> origin/edgeTo update a local development branch with the latest official Insoshi updates on edge: git fetch originYou should also be able to use the rebase command to switch an existing local development branch from running on against master to edge: git checkout <existing_localdev>(Going in reverse from edge to master can be more complicated depending on the features/fixes currently on edge and your local development.) The process outlined in Pushing up Your Changes remains the same no matter if you've started from master or edge. |