Skip to content

Commit c5be0cd

Browse files
committed
add PR to readme
1 parent e7b539c commit c5be0cd

File tree

3 files changed

+48
-12
lines changed

3 files changed

+48
-12
lines changed

_posts/plotly_js/README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,22 @@ Our javascript tutorials are written in HTML files with embeded [codepen](http:/
9494
- Now from <b>All Buckets /plotly-tutorials/plotly-documentation/thumbnail</b> select the <b>Actions</b> dropdown and <b>upload</b> your .jpg file
9595

9696
##### In the terminal in the `documentation` repo
97-
9. Commit and Push your tutorial
98-
- `git add` your .html files
99-
- `git commit -m "include a message about the tutorial you're adding"`
100-
- `git push origin source-design-merge`
97+
9. Make a PR
98+
99+
Ready for your changes to be reviewed? Make a pull request against the `source-design-merge` branch!
100+
Create a feature branch and use `git status` to list changed files.
101+
```
102+
git checkout -b your_feature_branch
103+
git status
104+
```
105+
Add, commit, and push the files that you'd like to add to your PR:
106+
```
107+
git add file-a
108+
git add file-b
109+
git commit -m 'message about your changes'
110+
git push origin your_feature_branch
111+
```
112+
Visit the [documentation repo](https://github.com/plotly/documentation) and open a pull request against the `source-design-merge` branch. You can then tag **@cldougl** and **@bcdunbar** for a review.
101113

102114
10. To proof your work follow these steps: https://github.com/plotly/documentation/blob/source/Contributing.md#rendering-the-pages-locally
103115
11. Deploy with `bundle exec rake deploy`

_posts/python/README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,22 @@ Our python tutorials are written in [ipython notebooks](http://ipython.org/noteb
120120
- Now from <b>All Buckets /plotly-tutorials/plotly-documentation/thumbnail</b> select the <b>Actions</b> dropdown and <b>upload</b> your .jpg file
121121
122122
##### In the terminal in `documentation`
123-
9. Commit and Push your tutorial
124-
- `git add` your .ipynb and .html files
125-
- `git commit -m "include a message about the tutorial you're adding"`
126-
- `git push origin source-design-merge`
123+
9. Make a PR
124+
125+
Ready for your changes to be reviewed? Make a pull request against the `source-design-merge` branch!
126+
Create a feature branch and use `git status` to list changed files.
127+
```
128+
git checkout -b your_feature_branch
129+
git status
130+
```
131+
Add, commit, and push the files that you'd like to add to your PR:
132+
```
133+
git add file-a
134+
git add file-b
135+
git commit -m 'message about your changes'
136+
git push origin your_feature_branch
137+
```
138+
Visit the [documentation repo](https://github.com/plotly/documentation) and open a pull request against the `source-design-merge` branch. You can then tag **@cldougl** and **@bcdunbar** for a review.
127139
128140
10. To proof your work follow these steps: https://github.com/plotly/documentation/blob/source/Contributing.md#rendering-the-pages-locally
129141
11. Deploy with `bundle exec rake deploy`

_posts/r/README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,22 @@
107107
- Now from <b>All Buckets /plotly-tutorials/plotly-documentation/thumbnail</b> select the <b>Actions</b> dropdown and <b>upload</b> your .jpg file
108108
109109
##### In the terminal in `documentation`
110-
4. Commit and Push your tutorial
111-
- `git add` your .Rmd and .md files
112-
- `git commit -m "include a message about the tutorial you're adding"`
113-
- `git push origin source-design-merge`
110+
4. Make a PR
111+
112+
Ready for your changes to be reviewed? Make a pull request against the `source-design-merge` branch!
113+
Create a feature branch and use `git status` to list changed files.
114+
```
115+
git checkout -b your_feature_branch
116+
git status
117+
```
118+
Add, commit, and push the files that you'd like to add to your PR:
119+
```
120+
git add file-a
121+
git add file-b
122+
git commit -m 'message about your changes'
123+
git push origin your_feature_branch
124+
```
125+
Visit the [documentation repo](https://github.com/plotly/documentation) and open a pull request against the `source-design-merge` branch. You can then tag **@cldougl** and **@bcdunbar** for a review.
114126
115127
5. To proof your work follow these steps: https://github.com/plotly/documentation/blob/source-design-merge/Contributing.md#rendering-the-pages-locally
116128

0 commit comments

Comments
 (0)