Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to commit to the develop branch in RedGate SQL Source Control

Tags:

git

redgate

In the Commit tab, the branch shown is a grey master.

enter image description here

In my GitHub, I have already set up a develop branch and hope to commit my changes to that branch. How can I change the working branch in RedGate SQL Source Control?

like image 873
Blaise Avatar asked Sep 05 '25 03:09

Blaise


1 Answers

You can't do branch switching within SQL Source Control, at least not yet. For now you have to use an external client such as the Git command line.

Eg, git checkout yourbranch

After you do this you will need to update your database by going to the get latest tab in SQL Source Control.

like image 60
David Atkinson Avatar answered Sep 07 '25 20:09

David Atkinson