@sdetweil thank you ! This explanation is very helpful. I’m still a little new to the git environment.
Read the statement by Michael Teeuw here.
Posts
-
RE: issues updating MMM-calendar EXT3
-
RE: issues updating MMM-calendar EXT3
Got it ! git checkout… worked! Thanks for the clarification on what git reset does verses git checkout.
-
RE: issues updating MMM-calendar EXT3
oops meant to type
to clarify… execute “git checkout package-lock.json” instead of " git reset package-lock.json" or execute “git checkout package-lock.json” and " git reset package-lock.json"?
-
RE: issues updating MMM-calendar EXT3
to clarify… execute “git checkout package.json” instead of " git reset package.json" or execute “git checkout package.json” and " git reset package.json"?
-
RE: issues updating MMM-calendar EXT3
@sdetweil Correct. After executing “git reset package-lock.json”, I get the message “Unstaged changes after reset:
M package-lock.json”I then run git pull and get
pi@MagicMirror:~/MagicMirror/modules/MMM-CalendarExt3 $ git pullUpdating e93534d…5f276d4
error: Your local changes to the following files would be overwritten by merge:
package-lock.json
Please commit your changes or stash them before you merge.
Aborting -
RE: issues updating MMM-calendar EXT3
@sdetweil I just encountered the same problem and followed your instructions in your last post. This did not fix the problem. I continue to get the same error
“your local changes to the following files would be overwritten by the merge: package-lock.json
please commit them or stash them before you merge.
Aborting.”Thoughts on what to do next?
Norb
-
RE: Incorrect Clock module time after update to latest MM
D’oh. I found my issue… I inadvertently typed Config: instead of lower case config:
Issued resolved. Thx for taking time to respond. Sorry to have troubled you.
Norb
-
RE: Incorrect Clock module time after update to latest MM
I added this configuration code to the clock module portion within config.js. Is that the corct place?
-
RE: Incorrect Clock module time after update to latest MM
I added this to the clock module portion with in config.js. Is that the correct place?
-
Incorrect Clock module time after update to latest MM
After updating to latest version of MM I noticed the default clock display the incorrect hour. Exactly 5 hrs ahead. Have been running the same MM pi for 5 plus years with no issue.
Things I’ve done o remedy:-
checked the Raspberry pi localization settings which are set to US - timezone Eastern
-
validated pi is displaying correct time
-
googled this issue to find that others had corrected this by inserting the following in
config.jsconfig {
timezone:“America/New_York”,
}
this did not correct the time.
What do I need to do to get the time to display properly?
-