It’s easy to track change per commit in Git using git diff command. Do you know this command is more…
git
How to show only file names in Git log
To show only file names in Git log, use this command: git log –name-status –graph –oneline The key parameter here…

Git – Reset or revert a commit pushed to remote
Sometimes after you push some commits to the remote, you realize that there is a mistake. So you need to…

SVN best practices for WordPress developers
Although GIT is everywhere, SVN still is the version control for all the themes and plugins hosted on WordPress.org. I’ve been…