This command shows only the differences between two files that are being filtered by grep to exclude lines that are empty or begin with ‘#’ (usually comments)
grep
sdiff -s <(grep -Ev '^#|^$' redis.conf) <(grep -Ev '^#|^$' redis.conf.dpkg-dist)