web - Directory mapping and merging in git -


i have online store running oscommerce , use git manage development, official release uses git.

i go through changelog , read each change each file, type said change, , commit. can imagine takes forever , increases chance of me typing , commiting wrong.

i'd easier way manage updates/merging official git repo without having hand edit each file , commit. know git has merge command run 2 obstacles when thinking problem.

  1. the file structure isn't same.

    all files located in shop/ , default catalog/

  2. i want merge changed files official "catalog/" directory files in "shop/" directory.

    i rather not download/redownload every readme, changelog, , other removed files every time updates official repo

how can update/merge files without retyping every change in manually taking account above 2 problems? what's proper workflow situation?


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -