2024-06-09 11:17:42 +00:00
|
|
|
# Creating a new repository on the command line
|
2024-06-11 11:34:48 +00:00
|
|
|
|
2024-06-09 11:17:42 +00:00
|
|
|
touch README.md
|
|
|
|
git init
|
|
|
|
git checkout -b main
|
|
|
|
git add README.md
|
|
|
|
git commit -m "first commit"
|
|
|
|
git remote add origin https://gitdab.com/andodeki/relay_button.git
|
|
|
|
git push -u origin main
|
|
|
|
|
|
|
|
# Pushing an existing repository from the command line
|
|
|
|
git remote add origin https://gitdab.com/andodeki/relay_button.git
|
|
|
|
git push -u origin main
|
2024-06-12 14:14:10 +00:00
|
|
|
|
|
|
|
git add *
|
|
|
|
git commit -m "working button to trigger relay and blinking led code"
|
|
|
|
git push -u origin main
|
|
|
|
|
|
|
|
|
|
|
|
https://wokwi.com/projects/400243028096410625
|
|
|
|
|
|
|
|
easyeda2kicad --full --lcsc_id=C99666
|
|
|
|
easyeda2kicad --full --lcsc_id=C99666 --output ~/libs/my_lib
|