python issue?
-
- Posts: 337
- Joined: Wed Apr 06, 2005 12:11 pm America/New_York
- Has thanked: 10 times
- Been thanked: 3 times
python issue?
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!
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!
Filters:
-
- Posts: 1519
- Joined: Wed Sep 18, 2019 6:15 pm America/New_York
- Been thanked: 9 times
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