Replace http with https in pictures links

Adam Wulkiewicz 2014-07-06 17:36:07 -07:00
parent 4499d53d12
commit a44dcfe8e0

@ -53,7 +53,7 @@ If everything works for you, you may move forward.
You can't work directly in the original Boost.Geometry repository, therefore you should create your fork of this library. This way you can modify the code and when the job is done send a pull request to merge your changes with the original repository.
![Fork button](http://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/fork.png)
![Fork button](https://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/fork.png)
1. login on GitHub
2. go to [Boost.Geometry repository](https://github.com/boostorg/geometry)
@ -100,7 +100,7 @@ For now there is only one remote repository set for this local copy. You may che
you should see something like this
![origin git@github.com:boostorg/geometry.git](http://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/remote_origin.png)
![origin git@github.com:boostorg/geometry.git](https://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/remote_origin.png)
There is one remote repository added, the original Boost.Geometry repository at [boostorg/geometry](https://github.com/boostorg/geometry)
@ -116,7 +116,7 @@ now after running
you should also see the remote you just added
![my_fork git@github.com:awulkiew/geometry](http://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/remote_fork_origin.png)
![my_fork git@github.com:awulkiew/geometry](https://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/remote_fork_origin.png)
#### GitFlow workflow
@ -137,13 +137,13 @@ Make sure you're in develop branch running
you should see
![Develop branch picked](http://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/branch_vv_develop.png)
![Develop branch picked](https://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/branch_vv_develop.png)
Now pick a name for your new branch. Try to choose the name which doesn't already exist. To check the names of existing remote branches run
git branch -a
![List of branches](http://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/branch_a.png)
![List of branches](https://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/branch_a.png)
or check them directly on GitHub.
@ -168,19 +168,19 @@ Now after running
you should see
![Feature branch picked](http://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/branch_vv_feature.png)
![Feature branch picked](https://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/branch_vv_feature.png)
Have in mind that if you didn't use the `-u` switch you wouldn't see the tracking info for your new branch.
You should also be able to see your newly created remote branch on GitHub
![Fork branches list](http://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/remote_branch.png)
![Fork branches list](https://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/remote_branch.png)
or while running
gitk
![gitk develop and feature/example](http://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/gitk_branches.png)
![gitk develop and feature/example](https://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/gitk_branches.png)
### Modify the branch
@ -243,19 +243,19 @@ After pushing your work you should be able to see it on GitHub.
Click "Compare and pull request" button
![compare and pull button](http://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/compare_and_pull.png)
![compare and pull button](https://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/compare_and_pull.png)
By default GitHub wants to request a pull to the boostorg/geometry:master branch
![default pull branches](http://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/default_pull.png)
![default pull branches](https://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/default_pull.png)
Change it by clicking the "Edit" button on the right side and pick develop branch
![change base branch](http://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/change_pull_base.png)
![change base branch](https://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/change_pull_base.png)
add some nice title and description
![Pull request title](http://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/pull_request_title.png)
![Pull request title](https://raw.githubusercontent.com/boostorg/geometry/gh_wiki/contribution/pull_request_title.png)
and click the "Send pull request" button.