Changes

Line 219: Line 219:  
Then go into "Remotes - origins" and edit the entries to pull and push onto new branch.
 
Then go into "Remotes - origins" and edit the entries to pull and push onto new branch.
 
It may also be required to edit the .git/config file to have project linked by default onto new branch.
 
It may also be required to edit the .git/config file to have project linked by default onto new branch.
 +
 +
= Deleting a branch=
 +
With GIT Command Line Interface:
 +
 +
Do a push on branch but add : before name of branch:
 +
<source lang="bash">
 +
git push remoteentryname :branchnametodelete
 +
</source>
    
=Merging a maintenance branch x.x into dev branch=
 
=Merging a maintenance branch x.x into dev branch=