On 12/5/2019 1:51 PM, Denton Liu wrote:
On Thu, Dec 05, 2019 at 11:16:27AM -0500, Ben Keene wrote:
On 12/5/2019 4:54 AM, Luke Diamand wrote:
On Wed, 4 Dec 2019 at 22:29, Ben Keene via GitGitGadget
- There are some bits of trailing whitespace around - can you strip
those out? You can use "git diff --check".
Is there a way that I can find out which branches I need to remove white
space from now that they have been committed?
I'm assuming you mean commits? You can run
git log --check master..
and git will highlight the whitespace errors.
Yes, that's exactly what I meant. Thank you.