Difference between revisions of "UM:Cli Attach And Detach Project"

From DigitalVision
Jump to: navigation, search
m (Upload page Cli_Attach_And_Detach_Project)
 
m (Text replacement - "|Platform:" to "|UM:")
 
Line 1: Line 1:
 
<div class="manualcontent">
 
<div class="manualcontent">
  
{{Template:M-Navlinks-top|Platform:Manual|Platform:Cli_Cli_Format_Spec_Definition|Platform:Cli_Cli_Composition}}
+
{{Template:M-Navlinks-top|UM:Manual|UM:Cli_Cli_Format_Spec_Definition|UM:Cli_Cli_Composition}}
  
 
{{Template:M-Title|Attach and Detach Project}}
 
{{Template:M-Title|Attach and Detach Project}}
Line 97: Line 97:
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
  
{{Template:M-Navlinks-bottom|Platform:Manual|Platform:Cli_Cli_Format_Spec_Definition|Platform:Cli_Cli_Composition}}
+
{{Template:M-Navlinks-bottom|UM:Manual|UM:Cli_Cli_Format_Spec_Definition|UM:Cli_Cli_Composition}}
  
 
</div>
 
</div>

Latest revision as of 12:08, 15 October 2014

Darrow-up.png     Previous Next

Attach and Detach Project

--attach-project <path>

Attach project found at specified path

--detach-project <name>

Detach named project

--remove-cache

delete project caches when attaching

 

Attaching a project makes it available for use by the application and adds it to the list of available projects on the project screen.

Attaching a Project

--attach-project <path>

 

This command attaches the specified project. The named project is the full path to the project folder.

 

Command :

$ nucoda_film_master \

  --attach-project D:\archived\project-x

INFO Imported "D:\archived\project-x" (project name is "project-x").

 

dv_note

Attach multiple projects by separating them with a space e.g.

 

--attach-project D:\project1 "G:\blue sky"

Detaching a Project

--detach-project <name>

 

This command detaches the named project.

 

Command :

$ nucoda_film_master --detach-project project-x

INFO Detached project "project-x".

Removing Project Caches

--remove-cache

 

When attaching projects, specify this argument to have their caches removed after attachment.

 

Command :

$ nucoda_film_master \

  --attach-project D:\archived\project-x \

  --remove-cache

INFO Imported "D:\archived\project-x" \

  (project name is "project-x") and removed cache.

 

Darrow-up.png     Previous Next