Terminal

Terminal: git warning about default branch name.

                    Hint:
                    
                    Using 'master' as the name for the initial branch. This default branch name will change to "main" in Git 3.0. To configure the initial branch name to use in all of your new repositories, which will suppress this warning, call:
                    
                    git config --global init.defaultBranch <name>
                    
                    Names commonly chosen instead of 'master' are 'main', 'trunk' and 'development'. The just-created branch can be renamed via this command:
                    
                    git branch -m <name>
                    
                    Disable this message with "git config set advice.defaultBranchName false"