Skip to content

Git specific conventions

.gitignore

Info

The .gitignore file is a file that contains files not to show as available for staging/committing.

Note

There is a version designed for the github choose gitignore feature. You can find it here.

The .gitignore file for I projects should look something like this/exactly like this:

.gitignore
1
2
3
4
# See https://i-language-rust.readthedocs.io/en/latest/ILEPs/Intro/011/#.gitignore

# Build output
out/

Git submodules

The I programming language can import git submodules and use them as any ordinary other module.


Last update: 2024-02-14