Git – How to Use Pull Requests Without GitHub

code-reviewsgit

I work as an analyst for a financial institution, which, due to data sensitivity, will not store any data in the cloud. However, I'm having some success getting my team to use Git for code management. I was wondering whether there was any way to implement Github-like pull requests in our own server. The specific feature I'm interested in is the ability to submit a changeset for comments, without actually having it merged into a given branch. I like the workflow of (1) submit changes, (2) have changes reviewed and commented on, and (3) either accept the commit or reject it. Can this be implemented (even better, can this be easily implemented) on our own servers?

Best Answer

git request-pull anyone?

Summarizes the changes between two commits to the standard output, and includes the given URL in the generated summary...

This should do the trick...

Related Topic