Skip to main content
Skip table of contents

Can MettleCI manage Job parameter files in version control?

Right now we don't provide an interface to check-in the relevant parameters files.  We're working on providing a Workbench-based interface to make this easier, but in the meantime you can easily add these, and other non-DataStage files, to your Git repository yourself in a couple of ways:

From the command line

The Git Command Line provides an easily accessible means of adding files to your locally-cloned repository and then pushing them to your central, shared repository.

Git Example
BASH
# Adds the file to your local repository and stages it for commit. 
$ git add MyFileName

# Commit the file that you've staged in your local repository.
$ git commit -m "Adding file MyFileName" MyFileName

# Pushes the changes in your local repository up to the remote repository
$ git push origin your-branch

Using a Graphical Tool

You can check files into Git using your favourite Git user interface, of which a large number are easily available.  Our favourite, Atlassian Sourcetree, is capable, and free!

Image result for atlassian sourcetree



JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.