If you have been using Linux for a while, you would know Bluetooth and Linux don’t go well. Whatever may be the reason, it’s always face problem when you update Linux versions. Recently, since my upgrade to Ubuntu 20.04, I have come to notice that Bluetooth devices stop working. I check my system not able…
Month: January 2021
Git Log Commands
Show logs with file differences(we can add number of the commit which we want to see like -1,-2): git log -p Show logs with addition and deletion in a particular commit: git log –stat Show commits in one line: git log –pretty=oneline Show commit in short form: git log –pretty=short Show log from last two…