Stashing local configurations
In the project I’m working on, there are some local configurations (typically database connection strings) that I do not push to the git remote. This causes ...
In the project I’m working on, there are some local configurations (typically database connection strings) that I do not push to the git remote. This causes ...
Beyond just ensuring every line of code is executed with Code Coverage test, there is another way to ensure the test cases written are adequate, and that is ...
Testing is a very important process in software engineering to ensure the quality of the code we write, and we can ensure testing is adequate by doing code c...
Recently github has discontinued the using of username and password - https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/. S...
I am building a fix for the current release of a project, so the fix branch should branch out from the current master branch like this: However, as I was ...