Rich-Harris / degit

Straightforward project scaffolding
MIT License
6.95k stars 243 forks source link

best way to update ? #252

Open kiuKisas opened 3 years ago

kiuKisas commented 3 years ago

I have a project I start with an older scaffhold, config and stuff change since then. Any way to update without recreate a new project and copy/paste my change?

t829702 commented 3 years ago

may get a diff from upstream and apply, try --dry-run first and apply again if no conflicts?


$ git diff --stat -U7 origin-old-hash..HEAD | patch -p1 --dry-run