Repository: incubator-apex-site Updated Branches: refs/heads/asf-site 332c3ff42 -> 674519ffd
from 65f9097304576e97a5e412ec7199a92dff9bfe46 Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-site/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-site/commit/674519ff Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-site/tree/674519ff Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-site/diff/674519ff Branch: refs/heads/asf-site Commit: 674519ffdf55b6d76be94c7c66d267435982f2f8 Parents: 332c3ff Author: Thomas Weise <[email protected]> Authored: Thu Dec 10 08:37:05 2015 -0800 Committer: Thomas Weise <[email protected]> Committed: Thu Dec 10 08:37:05 2015 -0800 ---------------------------------------------------------------------- content/contributing.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-apex-site/blob/674519ff/content/contributing.html ---------------------------------------------------------------------- diff --git a/content/contributing.html b/content/contributing.html index ff87ffe..22702fe 100644 --- a/content/contributing.html +++ b/content/contributing.html @@ -97,11 +97,11 @@ <h2 id="opening-pull-requests-contributors-">Opening Pull Requests (contributors)</h2> <p>The apex-core and apex-malhar repositories both have mirror repositories on github which are used to review pull requests and provide a second remote endpoint for the codebase.</p> <ol> -<li>Create a <a href="https://malhar.atlassian.net/">JIRA</a> for the work you plan to do (or assign yourself to an existing JIRA ticket)</li> +<li>Create a JIRA (<a href="https://issues.apache.org/jira/browse/APEXCORE/">-core</a>,<a href="https://malhar.atlassian.net/projects/MLHR/issues/">-malhar</a>) for the work you plan to do (or assign yourself to an existing JIRA ticket)</li> <li>Fork the ASF github mirror (one time step):<br><a href="https://github.com/apache/incubator-apex-core/">https://github.com/apache/incubator-apex-core/</a> </li> <li>Clone the <strong>fork</strong> on your local workspace (one time step):<br><code>git clone https://github.com/{github_username}/incubator-apex-core.git</code></li> <li>Add <a href="https://github.com/apache/incubator-apex-core">incubator apex core</a> as a remote repository (one time step):<br><code>git remote add upstream https://github.com/apache/incubator-apex-core</code></li> -<li>Create a new branch from the <a href="https://github.com/apache/incubator-apex-core/tree/devel-3">devel-3</a> branch. <strong>Name your branch with the JIRA number in it, e.g. <code>APEX-123.my-feature</code>.</strong><br><code>git checkout -b APEX-123.my-feature -t upstream/devel-3</code><br>Creating a local branch that tracks a remote makes pull easier (no need to specify the remote branch while pulling). A branch can be made to track a remote branch anytime, not necessarily at its creation by:<br><code>git branch -u upstream/devel-3</code></li> +<li>Create a new branch from the <a href="https://github.com/apache/incubator-apex-core/tree/devel-3">devel-3</a> branch. <strong>Name your branch with the JIRA number in it, e.g. <code>APEXCORE-123.my-feature</code>.</strong><br><code>git checkout -b APEX-123.my-feature -t upstream/devel-3</code><br>Creating a local branch that tracks a remote makes pull easier (no need to specify the remote branch while pulling). A branch can be made to track a remote branch anytime, not necessarily at its creation by:<br><code>git branch -u upstream/devel-3</code></li> <li>When adding new files, please include the Apache v2.0 license header.<ul> <li>From the top level directory, run <code>mvn license:check -Dlicense.skip=false</code> to check correct header formatting.</li> <li>Run <code>mvn license:format -Dlicense.skip=false</code> to automatically add the header when missing.</li>
