Dear ALL,
There is a way to install ERPNext with shallow clone and not a full repository clone?
bench get-app erpnext https://github.com/frappe/erpnext
If it is possible, there is any pitfall doing that?
Thanks in advance for any clarification
Dear ALL,
There is a way to install ERPNext with shallow clone and not a full repository clone?
bench get-app erpnext https://github.com/frappe/erpnext
If it is possible, there is any pitfall doing that?
Thanks in advance for any clarification
@fromthestone in terms of function of ERPNext there is absolutely no problem with a shallow clone(quite obvious once you get to know what shallow clone is).
in terms of development you will not have other branches and the git blame history available locally. you can make the clone unshallow by using ‘git pull --unshallow
’.
Please google what is unshallow clone in git to get more clarity.
Perhaps you can pass a version/branch at the same time but I found that
bench update --reset
Kept the system at version 15 whereas the shallow clone after the warning and timeout moved to the development branch, which I did not want.