---
title: "Example default clone operations"
canonical: "https://support.appfire.com/space/JCPP/319357201/Example%20default%20clone%20operations"
format: markdown
---
> Macro (aura-html)

This example properties file defines Clone+ annd Clone++ default clone operations. 

```
# Example property file for Default Clone Plus
# More details are available in the Administrator Guide: https://bobswift.atlassian.net/wiki/display/JCPP/Administrator%27s+Guide

## Clone+

# Show this operation for all projects, issue types and status
condition.*.*.*.* = true

# Enable Bulk Clone
bulkClone = true

# Restrict clone operation to support and administrators
role.* = Support, Administrators

# Names that show to users
label = Escalate to Engineering
tooltip = Creates a task for Engineering

# Set default clone options
option.copyAttachments = true
option.copyWatchers = false
option.copyWorklogs = hide

# Set clone options available for fields
option.copycustomfield_11060 = true
option.copysummary = false
option.copyfixVersions = true
option.copycomponents = false
option.copyduedate = true
option.copyassignee = false
option.copytimeestimate = true
option.copysecurity = false

# Set target project
project.*.*.* = ZCLONE

# Set project category
condition.*.*.*.newcategory = true

## Clone++

# Show this operation for all issues of type bug (id = 1) or task (3)
plus.condition.*.1.*.* = true
plus.condition.*.3.*.* = true
plus.bulkClone = true

# Restrict clone operation so administrators
plus.role.* = Administrators

# Names that show to users
plus.label = Clone for administrators
plus.tooltip = Custom clone operation

# Map issue type to default to a task (id = 3)
plus.type.*.*.* = 3

# Set fields
plus.set.summary = Clone of issue with summary: %original_summary%

# Set default clone options
plus.option.copyAttachments = true
plus.option.copyWatchers = false
plus.option.copyWorklogs = hide
```