/DevOps

Repository for various DevOps practices

Primary LanguageShell

DevOps

This repository tracks my learning and personal projects in terms of DevOps topics.

Linux - Linux OS related topics

CI/CD - Continuous Integration & Continuous Deployment

Networking

Git

IT Support

keywords for Git Commits

- -Semantic Commit Messages
Format:
        <type>(<scope>): <subject>
        <type>: chore, docs, feat, fix, refactor, style, or test
        <subject>: summary in present tense
        <scope>: (optional) anything specifying place of the commit change
feat new feature for the user, not a new feature for build script; introduces a new feature to the codebase
fix fixes (e.g. typos, linter rules, broken links/imports, etc.)
docs changes to the documentation
style format, missing semicolons, etc.; no code change
refactor refactoring production code, eg. renaming a variable, changing algorithm, revising code for performance
test add tests, refactoring test; no production code change
chore updating build tasks, package manager config, etc.; no production code change