Archieving git master branch
first make sure you’re checkout to master branch git checkout master The correct syntax for zipping the master branch in Git using the git archive command with the output filename specified is: git archive –format=zip –output=[filename].zip HEAD This command creates a new zip file named master.zip containing the contents of the master branch. You can […]