Property definitions

nitc $ CmdIniCloneCommand :: defaultinit
# Cmd that finds the git clone command related to an `mentity`
class CmdIniCloneCommand
	super CmdIniGitUrl

	# Clone command
	var command: nullable String is lazy do
		var url = self.url
		if url == null then return null
		return "git clone {url}"
	end
end
src/doc/commands/commands_ini.nit:116,1--126,3