You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi guys,
I would like to retrieve a diff of the working tree but it's seems it is not possible at the moment (a simple git diff).
At first sight, I thought that the $repository->getDiff() without parameters method would do the trick, but in the end the diff command use sha^..sha as subject which is not what I expected.
I know that would be a huge BC break, but is this the wanted behavior ?
For now, I created my own DiffCommand object which don't call the addCommandSubject method and create myself the Diff object:
Hi guys,
I would like to retrieve a diff of the working tree but it's seems it is not possible at the moment (a simple
git diff
).At first sight, I thought that the
$repository->getDiff()
without parameters method would do the trick, but in the end the diff command usesha^..sha
as subject which is not what I expected.I know that would be a huge BC break, but is this the wanted behavior ?
For now, I created my own
DiffCommand
object which don't call theaddCommandSubject
method and create myself theDiff
object:Is there an alternative approach ?
The text was updated successfully, but these errors were encountered: