How to add symlinks to git repository on Windows? -
i compile binaries os x using github' s electron environment , want add output git repository.
i tried
git add . error: readlink("sulu.app/contents/frameworks/electron framework.framework/electron framework"): function not implemented error: unable index file sulu.app/contents/frameworks/electron framework.framework/electron framework fatal: adding files failed
any idea work around this?
windows command
mklink /h "link_file_path" "target_file_path"
use above command create hard link output files. work. did similar stuff git hooks.
refer link more info mklink
http://ss64.com/nt/mklink.html
Comments
Post a Comment