How to move code changes from backoffice to git?
# help-with-umbraco
h
I've made some changes to some code files on the backoffice of my umbraco installation. How do I get those changes pushed to my Git repository? Usually I do make changes on a local branch but for odd reasons me and a colleque just went ahead and refactored a bunch of code in the backoffice not thinking about not out git repository...
j
If you are using usync or deploy you can export your views (I assume the code changes are in views?) Otherwise you can copy the views off the server and paste into a local site, then add and commit the changes?
h
Yeah thats what Im thinking. But manually Ill have to remember all the files changed... Or I can just copy all of them and then Git should sort out the changes for me. Thanks.