Clock

Self-contained Clock library to work with Time, TimeZones and DST including mechanisms to sync time with external sources

public

The repository for this project is empty

If you already have files you can push them using command line instructions below.
Otherwise you can start with adding README file to this project.

Command line instructions

Git global setup
git config --global user.name "Your name"
git config --global user.email "your@email.com"
Create a new repository
git clone https://gitlab.lindenaar.net/arduino/Clock.git
cd Clock
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
Existing folder or Git repository
cd existing_folder
git init
git remote add origin https://gitlab.lindenaar.net/arduino/Clock.git
git add .
git commit
git push -u origin master