What's the difference between pull-based and push-based development?

3

What is the difference between pull-based and push-based development in software engineering? Does this refer to Git too?

    
asked by anonymous 18.08.2017 / 17:32

1 answer

5

This does not seem to have anything to do with Git, at least not directly.

This is used in projects in general.

In push a task is created and assigned to someone suitable (in a broad sense) to accomplish it. Eventually it may take a while to designate. It is considered the "traditional" way.

In pull tasks are created and queued, whoever is available picks up the task that is at or prior to the queue priority and executes. Usually used in Scrum.

Article .

    
18.08.2017 / 17:59