Home > Software engineering >  Where is the .github folder in the project repository?
Where is the .github folder in the project repository?

Time:02-24

I want to add a few config files to .github folder but I can't seem to find it in my repository. I do see the .git and .gitignore files. Where can I find this .github folder, Is it added by git or should I create it?

CodePudding user response:

There isn't one unless you create it (and if you do, you should create it in the root directory for the repository).

  • Related