Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleSTEP 1: In terminal or command prompt, navigate to your Iguana X repository file for the desired component.

Navigate to your Iguana X component repos file. You may find this in the default location:

For Windows:

Code Block
languagebash
C:\ProgramData\IguanaX\repos\<component_guid>

For Linux:

Code Block
languagebash
/home/<user>/iguana~/.IguanaX/repos/<component_guid>
Expand
titleSTEP 2: Create a .gitignore file for your component.

For Windows:

  1. Create the .gitignore hidden file

Code Block
languagebash
echo. > .gitignore
  1. Open the file in notepad to manually edit the file.

Code Block
notepad .gitignore

For Linux:

  1. Create the .gitignore hidden file

Code Block
touch .gitignore
  1. Open the file in editor mode

Code Block
vi .gitignore

...