Menu
  • HOME
  • TAGS

Is there any easy way to .zip up my source code with Visual Studio 2013?

git,visual-studio-2013,zip,pkzip

The .gitignore file is created when you create a Visual Studio project with the "Create new Git repository" selected. You don't need to use pkzip because Git has the archiving feature built-in. Just type: git archive -o all.zip HEAD and it will create all.zip of the latest source, without any...