I am working on a project where I integrated my project with git
. For integration purpose, I am using go-git
library. My question is how can I find a common ancestor for two branches programmatically? I want to implement this function. Looks like go-git
and other go library do not provide such functionality.
How to find common ancestor for two branches programmatically
896 Views Asked by Abhishek Soni At
2
Here is small program using
go-git
that mimics the behavior ofgit merge-base --all