Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 1.17 KB

README.md

File metadata and controls

46 lines (35 loc) · 1.17 KB

Home-Assistant

HomeAssistant (HASS)

List Of Devices

Zwave Items

Quick Notes/Reminders/Links

Path to configuration.yaml:

/home/homeassistant/.homeassistant

Restart HASS Service:

sudo systemctl restart [email protected]

Update Steps:

https://www.home-assistant.io/docs/installation/virtualenv#upgrade https://www.home-assistant.io/docs/installation/raspberry-pi/#updating

  1. sudo su - homeassistant
  2. source /srv/homeassistant/bin/activate
  3. python3 -m pip install --upgrade homeassistant
    • or pip3 install --upgrade homeassistant

Check Status of service:

journalctl -u [email protected]

HASS-CLI

https://github.com/home-assistant/home-assistant-cli

Git Revert commit

https://bytefreaks.net/programming-2/how-to-undo-a-git-commit-that-was-not-pushed Method 1: Undo commit and keep all files staged git reset --soft HEAD~;

Method 2: Undo commit and unstage all files git reset HEAD~;

Method 3: Undo the commit and completely remove all changes git reset --hard HEAD~;