Technical requirements
In this chapter, you are not necessarily required to use the code examples from this book. However, if you have not already, it would be a good idea to clone the repository for this book. The code for this chapter is available on GitHub at https://github.com/PacktPublishing/Visual-Studio-2019-Tricks-and-Techniques/tree/main/.
Please visit the following link to check the CiA videos: http://bit.ly/3oxE5QM.
Warning
Please read the following if you receive an error while cloning the repository. Starting in Git 2.28, git init
will look to the value of init.defaultBranch
when creating the first branch in a new repository. If that value is unset, init.defaultBranch
defaults to master
. Because this repository uses main
as its default branch, you may have to run the following code from a command prompt or Git Bash to avoid the error:
$ git config --global init.defaultBranch main
The preceding note is predicated on whether you have installed a more recent...