Page 1 of 1

python issue?

Posted: Wed Jan 04, 2017 2:37 pm America/New_York
by oo_processing
Ah, so the POTUS June 8 directive somehow became the NASA Christmas directive.... :razz:

Having said that :eek: , is there some way to ensure that the manual changes that I make to scripts like anc_utils.py or configurations I change in L1B_template.pcf are not overwritten with every git update?

Happy New Years!

python issue?

Posted: Wed Jan 04, 2017 3:10 pm America/New_York
by OB.DAACx - SeanBailey
"Per the issuance of this Memorandum, all publicly accessible Federal websites must meet the HTTPS-Only Standard by December 31st of 2016."

> ...is there some way to ensure that the manual changes that I make...not overwritten with every git update?


Create a branch and commit your changes to it:

git checkout -b "my-spiffy-new-code" v7.3
git add <files I changed>
git commit


Sean