3.5.0 to 3.5.2 Upgrade Issue #12791
-
I am getting a git error when trying to pull: `From https://github.com/netbox-community/netbox
I have not made local changes to these files. When I check git diff on a few of the files, the changes are all the same: $ sudo git diff netbox/dcim/choices.py $ sudo git diff netbox/tenancy/views.py $ sudo git diff netbox/templates/dcim/rack.html $ sudo git diff netbox/templates/base/layout.html Any suggestions would be greatly appreciated. I am currently upgrading to address the netbox-rq bug in v3.5.0 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You've changed the file modes somehow, from 644 to 755 (i.e. set the executable bits on these files)
|
Beta Was this translation helpful? Give feedback.
-
Thank you @candlerb, that resolved the issue and my upgrade was successful. |
Beta Was this translation helpful? Give feedback.
You've changed the file modes somehow, from 644 to 755 (i.e. set the executable bits on these files)
git reset --hard origin/master
should forcibly put everything back how it should be.