Some Useful git
Commands
Write better commit messages by folling Conventional Commit
Version software per Semantic Versioning
# init git repo
git init
# create .gitignore file
touch .gitignore
# git config
git config --global user.name "Nice Name"
git config --global user.email "nice@mail.com"
# show status of git repo
git status
# add folder
git add docs/
git add DAQsimulator/
# git commit
git commit -m "docs: added git tips&trics"
# Display commit history
git log