Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 776 Bytes

PATCHING.md

File metadata and controls

17 lines (13 loc) · 776 Bytes

Updating patches for submodules

This is a memo for updating the submodules patch files.

  • Make changes within individual submodules.
  • Stage those changes temporarily but do not commit.
  • Run these commands:
(cd ./submodules/face-parsing.PyTorch && git --no-pager diff --no-color --staged > ../face-parsing.PyTorch.patch)
(cd ./submodules/MODNet && git --no-pager diff --no-color --staged > ../MODNet.patch)
(cd ./submodules/SMIRK && git --no-pager diff --no-color --staged > ../SMIRK.patch)
(cd ./submodules/INFERNO && git --no-pager diff --no-color --staged > ../INFERNO.patch)
(cd ./submodules/DSINE && git --no-pager diff --no-color --staged > ../DSINE.patch)
(cd ./submodules/omnidata && git --no-pager diff --no-color --staged > ../omnidata.patch)