Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brnovais/initial-commit
Template that I use to create the initial commit of my projects.
https://github.com/brnovais/initial-commit
git template
Last synced: 3 days ago
JSON representation
Template that I use to create the initial commit of my projects.
- Host: GitHub
- URL: https://github.com/brnovais/initial-commit
- Owner: brnovais
- Created: 2024-07-07T19:47:20.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-07T19:49:14.000Z (4 months ago)
- Last Synced: 2024-07-24T02:27:35.181Z (4 months ago)
- Topics: git, template
- Homepage: https://brnova.is
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Initial Commit
Template that I use to create the initial commit of my projects.
### Files
Initial files added to my first commit.
1. **_.gitattributes_**: normalize all text files. Be careful when using with binary files.
1. **_.gitignore_**: default files ignored in my development environment.
1. **_ACKNOWLEDGMENTS.md_**: sample acknowledgments of third-party software used by the project.
1. **_CHANGELOG.md_**: simple changelog for this project that can be used as a sample.
1. **_CONTRIBUTING.md_**: general guidelines on how to contribute to the project.
1. **_LICENSE.md_**: license information initially restricting access to everything in the project.
1. **_README.md_**: project introduction similar to a Getting Started.### Commits
All commit messages are based on [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/).
Example of the first commit used to initialize a new repository:```
chore: initial commit
```