gitzip icon indicating copy to clipboard operation
gitzip copied to clipboard

cli?

Open siddharthkp opened this issue 8 years ago • 4 comments

Is there a command line tool for this?

siddharthkp avatar Feb 17 '17 15:02 siddharthkp

What do you want to do by cli? do the same thing like GitZip?

KinoLien avatar Feb 21 '17 02:02 KinoLien

yep. A cli tool just feels closer to the workflow.

I usually clone on my terminal, cd and get started

siddharthkp avatar Feb 21 '17 04:02 siddharthkp

Maybe can use svn? check this answer.

KinoLien avatar Feb 22 '17 07:02 KinoLien

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"
}

wesbos avatar Jan 29 '20 17:01 wesbos