Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "VIATRA/DeveloperDocumentation/Contributing"

m (Ujhelyiz.incquerylabs.com moved page VIATRA/Contributing to VIATRA/DeveloperDocumentation/Contributing: restructuring)
(One intermediate revision by one other user not shown)
Line 12: Line 12:
  
 
We encourage all developers to use version control even while working on their contributions. In order to help setting things up, we provide Github mirrors for our Git repositories:
 
We encourage all developers to use version control even while working on their contributions. In order to help setting things up, we provide Github mirrors for our Git repositories:
* https://github.com/IncQueryLabs/org.eclipse.viatra
+
* https://github.com/viatra/org.eclipse.viatra
* https://github.com/IncQueryLabs/org.eclipse.viatra.examples
+
* https://github.com/viatra/org.eclipse.viatra.examples
* https://github.com/IncQueryLabs/org.eclipse.viatra.modelobfuscator
+
* https://github.com/viatra/org.eclipse.viatra.modelobfuscator
  
These mirrors are automatically kept up to date with the official repository on a daily basis. Just click "Fork" to create your own repository and you are ready to go. You will be able to pull new changes from this repository and also create pull requests when you are ready.
+
These mirrors are automatically kept up to date with the official repository on a daily basis. Just click "Fork" to create your own repository and you are ready to go. You will be able to pull new changes from this repository, but won't be able to create pull requests when you are ready.
  
 
Important notes:
 
Important notes:
* Always create a new branch for your pull requests, requests using existing branches will be closed without review.
 
 
* Since Gerrit changes are limited to a single commit, make sure to squash your commits into a single one for a given contributions (we suggest making small and frequent contributions instead of single, large ones).
 
* Since Gerrit changes are limited to a single commit, make sure to squash your commits into a single one for a given contributions (we suggest making small and frequent contributions instead of single, large ones).
 
* Your changes will still have to go through Gerrit (see above), but we can help you with the process.
 
* Your changes will still have to go through Gerrit (see above), but we can help you with the process.

Revision as of 11:09, 2 December 2018

Basic information

The development of VIATRA follows the Eclipse Development Process. For contributions, this means that all potential contributors need to

Working on your contribution on Github

We encourage all developers to use version control even while working on their contributions. In order to help setting things up, we provide Github mirrors for our Git repositories:

These mirrors are automatically kept up to date with the official repository on a daily basis. Just click "Fork" to create your own repository and you are ready to go. You will be able to pull new changes from this repository, but won't be able to create pull requests when you are ready.

Important notes:

  • Since Gerrit changes are limited to a single commit, make sure to squash your commits into a single one for a given contributions (we suggest making small and frequent contributions instead of single, large ones).
  • Your changes will still have to go through Gerrit (see above), but we can help you with the process.

Back to the top