groboclown
groboclown
My branching method seems to be mostly working: https://github.com/groboclown/p4-fusion/tree/branch-support-poc I'm tracking down a bug where a commit happens to the wrong branch, or possibly to multiple branches. It looks like...
Got it working! PR incoming. I know my comments on this issue have turned into a developer blog. I hope I haven't been too noisy with posting this.
One possible fix is to change the `NewGitDiffCmd` function to call the parser like: ```go errCh := make(chan error) go listenForStdErr(stderr, errCh) gitdiffFiles, err := gitdiff.Parse(stdout, errCh) ``` and change...
Along with this, it looks like the `DetectGit` function's `case err, open :=
@zricethezav Unfortunately, I have not been able to trace the actions that lead to this behavior. I was seeing it with a complicated private repository. If I could find the...
I did a bit of digging into this, and the issue is deeper than just this one `diff --git ` prefix check. It returns the combined diff for the merges,...
It looks like it's not as straightforward as I thought. The diff reports for each parent file, so this may need to be returning 1 difference fragment for each parent...
For the plugin, the P4PORT will need to start with `ssl://` (such as `ssl://perforce:1666`)
The configuration panel will show either "(hostname):(port)" or "ssl:(hostname):(port)" depending on whether you selected an SSL protocol. This particular error message comes from Java's SSL library (`javax.net.ssl.SSLPeerUnverifiedException`), whose documentation reads:...
To start with, would you post the stack trace from the IDE log? It's under the *Help* -> *Show Log in (program name)*. Look for the stack trace that includes...