H
H
hostadmin2019-04-27 16:26:45
git
hostadmin, 2019-04-27 16:26:45

How to develop/fix bugs in different branches in phpStorm?

Knowledgeable people, tell me.
I develop in phpStorm, all changes immediately go to git in master.
I want to start creating new functionality. How to properly separate the development of individual branches, i.e. so that it would be possible to develop the main functionality separately from fixing bugs?
Start a new project in phpStorm and copy all the code from the git there, but push it to your branch?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
I
Ivan Shumov, 2019-04-27
@inoise

Gitflow to help you)

B
BorLaze, 2019-04-27
@BorLaze

Load master
Create feature1 branch, work in it
If you need to fix a bug, then
-- commit the current state to feature1 branch
-- switch to master
-- create bug1 branch
-- fix bug
-- commit bug1
-- switch to master
-- merge bug1 to master
-- deploy master
Switch to feature1
Rebase master
Continuing work on feature1
Something like this. In general, as already advised above, we study the principles of the git and the recommended git flow

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question