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?
-
- Posts: 278
- Joined: Wed Apr 06, 2005 12:11 pm America/New_York
-
- User Services
- Posts: 1407
- Joined: Wed Sep 18, 2019 6:15 pm America/New_York
- Been thanked: 1 time
python issue?
"Per the issuance of this Memorandum, all publicly accessible Federal websites must meet the HTTPS-Only Standard by December 31st of 2016."
Create a branch and commit your changes to it:
Sean
> ...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