Updating the flag name from strip to strip-vcs
diff --git a/glide.go b/glide.go
index b5805a6..a1b6f64 100644
--- a/glide.go
+++ b/glide.go
@@ -405,7 +405,7 @@
 					Usage: "Copy dependencies from the GOPATH if they exist there.",
 				},
 				cli.BoolFlag{
-					Name:  "strip",
+					Name:  "strip-vcs",
 					Usage: "Removes version control metada (e.g, .git directory) from the vendor folder.",
 				},
 			},
@@ -419,7 +419,7 @@
 				installer.Home = gpath.Home()
 				installer.DeleteUnused = c.Bool("deleteOptIn")
 
-				action.Install(installer, c.Bool("strip"))
+				action.Install(installer, c.Bool("strip-vcs"))
 			},
 		},
 		{
@@ -493,7 +493,7 @@
 					Usage: "Resolve dependencies for only the current system rather than all build modes.",
 				},
 				cli.BoolFlag{
-					Name:  "strip",
+					Name:  "strip-vcs",
 					Usage: "Removes version control metada (e.g, .git directory) from the vendor folder.",
 				},
 			},
@@ -514,7 +514,7 @@
 				installer.Home = gpath.Home()
 				installer.DeleteUnused = c.Bool("deleteOptIn")
 
-				action.Update(installer, c.Bool("no-recursive"), c.Bool("strip"))
+				action.Update(installer, c.Bool("no-recursive"), c.Bool("strip-vcs"))
 			},
 		},
 		{