You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to install haxelib with "haxelib git " command, but do not clone .git folder, that contains all history?
Git git cloning can be done that way in this case:
git clone --depth=1 <remote_repo_url>
If I run command like this haxelib git starling-extensions-hx https://github.com/CrazyFlasher/starling-extensions-hx.git --depth=1 haxelib clones, then deletes everything git folder because it's looking for branch --depth=1 :)
The text was updated successfully, but these errors were encountered:
It's not a workaround it my case. Currently I use local haxelib that downloads needed libs during ci build. If library is git, it deletes it and re-downloads, because I use --always flag to be sure that specified commit is taken. And .git folder that contains hostory is huge in some cases.
It would be cool if haxelib won't re-download lib from git, if specified commit is already present. Or update it in case of branch
It sounds like you would be much happier with lix than haxelib. I guess you're using OpenFL though? Maybe you'll have to wait for openfl/lime#1381 then to be able to use it with lix.
Using Haxe 4.0.1
Is it possible to install haxelib with "haxelib git " command, but do not clone .git folder, that contains all history?
Git git cloning can be done that way in this case:
If I run command like this
haxelib git starling-extensions-hx https://github.com/CrazyFlasher/starling-extensions-hx.git --depth=1
haxelib clones, then deletes everything git folder because it's looking for branch --depth=1 :)The text was updated successfully, but these errors were encountered: