Adding pointers to glide docs after init
diff --git a/action/create.go b/action/create.go
index f790672..800ec48 100644
--- a/action/create.go
+++ b/action/create.go
@@ -43,6 +43,9 @@
 	if err := conf.WriteFile(glidefile); err != nil {
 		msg.Die("Could not save %s: %s", glidefile, err)
 	}
+	msg.Info("You can now edit the glide.yaml file. Consider:")
+	msg.Info("--> Using versions and ranges. See https://glide.sh/docs/versions/")
+	msg.Info("--> Adding additional metadata. See https://glide.sh/docs/glide.yaml/")
 }
 
 // guardYAML fails if the given file already exists.