Git Merge Specifics Commits -


suppose have several tasks , every 1 developed in branch. have 3 branchs too: develop, qa, production. merge every ticket develop when ready.

how can merge qa , production tasks need branch develop?

example:

i have task1, task2, task3, merge develop task1, task2, task3. delete 3 tasks branchs. need merge commits of task1 qa. how can that?

in future, not delete task branches if wish merge them qa (though recommend different workflow altogether, git flow). if have indeed deleted task branches, can restore them following: git branch task1 abc^2, abc commit merged task1 develop. merge task1 qa.


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -