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: _posts/plotly_js/README.md
+16-4Lines changed: 16 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -94,10 +94,22 @@ Our javascript tutorials are written in HTML files with embeded [codepen](http:/
94
94
- Now from <b>All Buckets /plotly-tutorials/plotly-documentation/thumbnail</b> select the <b>Actions</b> dropdown and <b>upload</b> your .jpg file
95
95
96
96
##### 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.
101
113
102
114
10. To proof your work follow these steps: https://github.com/plotly/documentation/blob/source/Contributing.md#rendering-the-pages-locally
Copy file name to clipboardExpand all lines: _posts/python/README.md
+16-4Lines changed: 16 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -120,10 +120,22 @@ Our python tutorials are written in [ipython notebooks](http://ipython.org/noteb
120
120
- Now from <b>All Buckets /plotly-tutorials/plotly-documentation/thumbnail</b> select the <b>Actions</b> dropdown and <b>upload</b> your .jpg file
121
121
122
122
##### 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.
127
139
128
140
10. To proof your work follow these steps: https://github.com/plotly/documentation/blob/source/Contributing.md#rendering-the-pages-locally
Copy file name to clipboardExpand all lines: _posts/r/README.md
+16-4Lines changed: 16 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -107,10 +107,22 @@
107
107
- Now from <b>All Buckets /plotly-tutorials/plotly-documentation/thumbnail</b> select the <b>Actions</b> dropdown and <b>upload</b> your .jpg file
108
108
109
109
##### 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.
114
126
115
127
5. To proof your work follow these steps: https://github.com/plotly/documentation/blob/source-design-merge/Contributing.md#rendering-the-pages-locally
0 commit comments