Git
-
Software Development
Selecting Git commits by message
In order to checkout, cherry-pick, or reset Git commits, you don’t have to provide their SHA commit hash. All…
Read More » -
DevOps
Tools For Software Engineering Teams
The effect of poorly performing web applications echoes across various parts of the business. The more breakage there is, the…
Read More » -
Software Development
What is the difference between ‘git pull’ and ‘git fetch’?
In the simplest terms, git pull does a git fetch followed by a git merge. You can do a git…
Read More » -
Software Development
4 Not-So-Obvious Reasons Why You Should Migrate From TFVC to Git
The Team Foundation Server (TFS) is a Microsoft product that provides all the necessary features to support the software development…
Read More » -
Software Development
People migrating from Github to Gitlab should learn about these details first
After Microsoft’s recent acquisition of Github, a mass exodus has kind of begun and many small and large projects are…
Read More » -
Software Development
Storing Encrypted Credentials In Git
We all know that we should not commit any passwords or keys to the repo with our code (no matter…
Read More » -
Software Development
Git commit fixup and autosquash
Git commit fixup and autosquash are helpful features when you want to “fix” changes from a single commit in your…
Read More » -
Software Development
Custom Git subcommands
Heavy users of Git often find themselves writing their own Git shortcuts or scripts which combine multiple Git commands for…
Read More » -
Software Development
Git Tutorial for Beginners
1. What is Git ? Git is a popular file versioning system used globally by numerous developers for their projects. It…
Read More »