Lab 13 - Export your Repo """"""""""""""""""""""""" Copy your git repositoy ----------------------- * Verify, that all files are checked in .. code-block:: bash git status * Create a copy of your git repository .. code-block:: bash # export git repository git archive --format zip --output /tmp/repo.zip master * Load the archive on your own laptop .. code-block:: bash scp root@srv..lab:/tmp/repo.zip * Verify the content of the archive on your laptop! (unpack the zip or use ``zipinfo``) .. code-block:: bash zipinfo /repo.zip