Git diff excluding file
Following will show current branch diff excluding package-lock.json
file.
git diff -- . ':(exclude)package-lock.json'
Tweet
Following will show current branch diff excluding package-lock.json
file.
git diff -- . ':(exclude)package-lock.json'
Tweet