PlasticSCM

PlasticSCM extensions and solutions.

Download Plastic

Official downloads.

PlasticSCM Github Extension

We have created an extension to access your Github Issues, directly from PlasticSCM:

PlasticSCM common errors

  • Connection refused during check-in (Linux): execute the following commands

    sudo systemctl stop plasticscm-server
    sudo systemctl start plasticscm-server
    

Plastic custom file types (filetypes.conf)

Plastic SCM handles two different file types: binaries and text files. By default, Plastic tries to identify a newly added file by using an internal algorithm and a built-in list of known extensions. But sometimes a file that should be binary is identified as text or viceversa. Source.

Create a file named filetypes.conf under the root folder of your workspace, and customize the contents based on the following snippet:

# PlasticSCM custom file types.
# Syntax: <extension>:<type>
# Type can be 'txt' or 'bin'.
# Examples:
#     .cpp:txt
#     .jpg:bin
.uplugin:txt
.uproject:txt

PlasticSCM filetypes.conf example.