1. Keeping a local forked copy in sync with the original repository can be a pain. Google around. Personally, I use this cheat sheet <https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes>.
For example, to keep my copy of Matthew's weewx-crt repository in sync with my local copy, I would do: # Add Matthew's repository as a new remote: git remote add mw https://github.com/mathewwall/weewx-crt # Pull from his 'master' branch into my local copy git pull mw master # Push into my github fork git push origin 2. Bugs should be reported to the issues list <https://github.com/weewx/weewx/issues>. -tk On Sun, May 10, 2020 at 4:29 AM Graham Eddy <[email protected]> wrote: > i have just installed github and pycharm - haven’t used either before. > i have cloned weewx into my pycharm environment and started my own private > branch. > how do i sync the current changes underway on 4.0.0 into my copy, or does > this happen magically in background? > > secondly, what’s the correct procedure to report a defect? > in this case, it is simply that weewx.conf has WEEWX_ROOT = /home/weewx > despite changing setup.cfg to home = /opt/weewx before setup.cf > build/install > > cheers > > -- > You received this message because you are subscribed to the Google Groups > "weewx-development" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/weewx-development/011EE63D-9FB6-482E-BAD8-69190EE9DF64%40gmail.com > . > -- You received this message because you are subscribed to the Google Groups "weewx-development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-development/CAPq0zECE724LbvHtZw%2B_UG1zO-a4RdG%3DJuyvpD_PMcfo8Cji6g%40mail.gmail.com.
