kea-classrooms / sc-JesperNielsen99

sc-JesperNielsen99 created by GitHub Classroom
0 stars 0 forks source link

Git config #4

Closed JesperNielsen99 closed 1 year ago

JesperNielsen99 commented 1 year ago

Most development tools and platforms today support some level of configuration as code - meaning that the state of the tool can be created from some level of code - usually a hidden file or folder in the root of the repository.

You probably noticed the .github folder in the root of this repository. It holds configuration data for GitHub Classroom (classroom), GitHub Actions (workflows) and I even created my own scope called template I used to copy the state of the template repository to this one.

Often configuration files are written in either yaml or json. While yaml and json are the most commonly used configuration file formats git uses it's own format - a format sometimes referred to as ini-files because they use the same format as ini-files which Microsoft used up until Windows 3.1 - before the dreaded Registry Database was introduced in Windows '95.

Git has an inline editor/reader called config.

JesperNielsen99 commented 1 year ago

Done