...
Code Block |
---|
git remote add inspectit_main git@github.com:inspectIT/inspectIT.git |
Implement changes & commit
Once you have the inspectIT source code via git available on your local machine, you can start coding and implementing changes. We advise that you check the Development Environment page in order to correctly setup the development environment. Please develop code thinking on Quality.
Your changes should be contained in one commit only. We will not accept any pull request containing more than one commit. If you development resulted in more commits, please use squashing option of Git to create a single commit.
The commit message should point to the JIRA ticket work was done for. The message should always be in the format:
Code Block |
---|
INSPECTIT-xxx: Description of the changes |
It is allowed to address two or more tickets with one commit. If this is the case, then please use the following format of the commit message:
Code Block |
---|
INSPECTIT-xxx, INSPECTIT-yyy: Description of the changes |
Check that the build is working
...