Skip to content

Instantly share code, notes, and snippets.

@cmlh
Created August 12, 2013 08:33
Show Gist options
  • Save cmlh/6209103 to your computer and use it in GitHub Desktop.
Save cmlh/6209103 to your computer and use it in GitHub Desktop.
HOWTO Clone the OWASP Top Ten .git repository, including the "comparison" git submodule
cmlh$ git clone git@github.com:OWASP/OWASP-Top-10.git
Cloning into 'OWASP-Top-10'...
remote: Counting objects: 201, done.
remote: Compressing objects: 100% (144/144), done.
remote: Total 201 (delta 56), reused 191 (delta 46)
Receiving objects: 100% (201/201), 46.58 MiB | 179 KiB/s, done.
Resolving deltas: 100% (56/56), done.
github.com cmlh$ cd OWASP-Top-10
OWASP-Top-10 cmlh$ git submodule init
Submodule '2013/Documents/Comparison_to_Prior_Releases' (git@github.com:cmlh/OWASP-Top-Ten-2013.git) registered for path '2013/Documents/Comparison_to_Prior_Releases'
OWASP-Top-10 cmlh$ git submodule update
Cloning into '2013/Documents/Comparison_to_Prior_Releases'...
remote: Counting objects: 29, done.
remote: Compressing objects: 100% (24/24), done.
remote: Total 29 (delta 4), reused 26 (delta 4)
Receiving objects: 100% (29/29), 1.34 MiB | 129 KiB/s, done.
Resolving deltas: 100% (4/4), done.
Submodule path '2013/Documents/Comparison_to_Prior_Releases': checked out 'c949beb223b9a39d55002154ffcfcbdb2e5027e8'
OWASP-Top-10 cmlh$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment