|
@@ -5,7 +5,7 @@ If you have questions about how to use ownCloud, please direct these to the [mai
|
|
|
### Guidelines
|
|
|
* [Report the issue](https://github.com/owncloud/android/issues/new) using our [template][template], it includes all the informations we need to track down the issue.
|
|
|
* This repository is *only* for issues within the ownCloud Android app code. Issues in other compontents should be reported in their own repositores:
|
|
|
- - [ownCloud code](https://github.com/owncloud/core/issues)
|
|
|
+ - [ownCloud core](https://github.com/owncloud/core/issues)
|
|
|
- [iOS client](https://github.com/owncloud/ios-issues/issues)
|
|
|
- [Desktop client](https://github.com/owncloud/mirall/issues)
|
|
|
- [ownCloud apps](https://github.com/owncloud/apps/issues) (e.g. Calendar, Contacts...)
|
|
@@ -48,10 +48,10 @@ NOTE: You must have the git installation folder in your environment variable PAT
|
|
|
|
|
|
### 7. Create pull request:
|
|
|
|
|
|
-NOTE: You must sign the [Contributor Agreement][1] before your changes can be accepted!
|
|
|
+NOTE: You must sign the [Contributor Agreement][agreement] before your changes can be accepted!
|
|
|
|
|
|
-* Commit your changes locally: "git commit -a"
|
|
|
-* Push your changes to your GitHub repo: "git push"
|
|
|
+* Commit your changes locally: ```git commit -a```
|
|
|
+* Push your changes to your GitHub repo: ```git push```
|
|
|
* Browse to https://github.com/YOURGITHUBNAME/android/pulls and issue pull request
|
|
|
* Enter description and send pull request.
|
|
|
|
|
@@ -59,10 +59,10 @@ NOTE: You must sign the [Contributor Agreement][1] before your changes can be ac
|
|
|
|
|
|
To make sure your new pull request does not contain commits which are already contained in previous PRs, create a new branch which is a clone of upstream/master.
|
|
|
|
|
|
-* git fetch upstream
|
|
|
-* git checkout -b my_new_master_branch upstream/master
|
|
|
-* If you want to rename that branch later: "git checkout -b my_new_master_branch_with_new_name"
|
|
|
-* Push branch to server: "git push -u origin name_of_local_master_branch"
|
|
|
+* ```git fetch upstream```
|
|
|
+* ```git checkout -b my_new_master_branch upstream/master```
|
|
|
+* If you want to rename that branch later: ```git checkout -b my_new_master_branch_with_new_name```
|
|
|
+* Push branch to server: ```git push -u origin name_of_local_master_branch```
|
|
|
* Use GitHub to issue PR
|
|
|
|
|
|
|