git_init

This is an old revision of the document!


Git Init

if (-not(Test-Path -Path ".\.git")) {
    git init
 
    git config --global core.excludesFile ~/.gitignore
    git config user.name "Michael Gupton"
    git config user.email mg@infostar.me
    git commit --allow-empty -m "Initial (empty) commit for bootstrapping the repo."
    git checkout -b working
}
  • git_init.1622635768.txt.gz
  • Last modified: 2021/06/02 12:09
  • by mgupton