Debug logs are an essential tool for Salesforce developers and admins. They help trace code execution, identify issues, and monitor system behavior. While you can view logs directly in Salesforce Setup, downloading multiple logs at once can be tedious. Thankfully, the Salesforce CLI (sf) makes this process quick and easy. Using sf apex get logContinue reading “Download Recent Salesforce Debug Logs Using Salesforce CLI”
Tag Archives: linux
How to Perform a Git Hard Pull (Without Regret)
When collaborating in Git, it’s not uncommon to find your local branch out of sync with the remote—especially when you’ve made changes that conflict or aren’t needed anymore. If you just want to wipe your local changes and sync exactly with the remote, there’s a powerful (but dangerous) combo: git reset –hardgit pull In thisContinue reading “How to Perform a Git Hard Pull (Without Regret)”