You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ui/CONTRIBUTING.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
-
# Contributing to Primate
1
+
# Contributing to CloudStack UI
2
2
3
3
## Summary
4
4
5
-
This document covers how to contribute to the Primate project. Primate uses Github PRs to manage code contributions.
5
+
This document covers how to contribute to the UI project. It uses Github PRs to manage code contributions.
6
6
These instructions assume you have a GitHub.com account, so if you don't have one you will have to create one.
7
-
Your proposed code changes will be published to your own fork of the Primate project and you will submit a Pull Request for your changes to be added.
7
+
Your proposed code changes will be published to your own fork of the project and you will submit a Pull Request for your changes to be added.
8
8
9
9
Please refer to project [docs](docs) for reference on standard way of component
10
10
configuration, development, usage, extension and testing.
@@ -27,18 +27,18 @@ No back porting / cherry-picking features to existing branches!
27
27
28
28
## Forking
29
29
30
-
In your browser, navigate to: [https://github.com/apache/cloudstack-primate](https://github.com/apache/cloudstack-primate)
30
+
In your browser, navigate to: [https://github.com/apache/cloudstack](https://github.com/apache/cloudstack)
31
31
32
32
Fork the repository by clicking on the 'Fork' button on the top right hand side.
33
33
The fork will happen and you will be taken to your own fork of the repository.
34
34
Copy the Git repository URL by clicking on the clipboard next to the URL on the right hand side of the page under '**HTTPS** clone URL'. You will paste this URL when doing the following `git clone` command.
35
35
36
-
On your workstation, follow these steps to setup a local repository for working on Primate:
36
+
On your workstation, follow these steps to setup a local repository for working on UI:
It is important that you create a new branch to make changes on and that you do not change the `master` branch (other than to rebase in changes from `upstream/master`). In this example I will assume you will be making your changes to a branch called `feature_x`.
51
-
This `feature_x` branch will be created on your local repository and will be pushed to your forked repository on GitHub. Once this branch is on your fork you will create a Pull Request for the changes to be added to the Primate project.
51
+
This `feature_x` branch will be created on your local repository and will be pushed to your forked repository on GitHub. Once this branch is on your fork you will create a Pull Request for the changes to be added to the UI project.
52
52
53
53
It is best practice to create a new branch each time you want to contribute to the project and only track the changes for that pull request in this branch.
54
54
@@ -101,7 +101,7 @@ Now that the `feature_x` branch has been pushed to your GitHub repository, you c
101
101
102
102
To initiate the pull request, do the following:
103
103
104
-
1. In your browser, navigate to your forked repository: [https://github.com/YOUR_ACCOUNT/primate](https://github.com/YOUR_ACCOUNT/primate)
104
+
1. In your browser, navigate to your forked repository: [https://github.com/YOUR_ACCOUNT/cloudstack](https://github.com/YOUR_ACCOUNT/cloudstack)
105
105
2. Click the new button called '**Compare & pull request**' that showed up just above the main area in your forked repository
106
106
3. Validate the pull request will be into the upstream `master` and will be from your `feature_x` branch
107
107
4. Enter a detailed description of the work you have done and then click '**Send pull request**'
0 commit comments