gitzip
gitzip copied to clipboard
cli?
Is there a command line tool for this?
What do you want to do by cli? do the same thing like GitZip?
yep. A cli tool just feels closer to the workflow.
I usually clone on my terminal, cd and get started
Maybe can use svn? check this answer.
This is my zsh function to do this:
function dl() {
folder=$(echo "$1" | sed -e 's/.*\///g')
svn checkout ${1:gs/tree\/master/trunk}
rm -rf "./$folder/.svn"
}