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
3. Add the upstream remote. This saves a reference to the main scikit-uplift repository, which you can use to keep your repository synchronized with the latest changes:
26
26
``` bash
@@ -36,7 +36,7 @@ So, please make a pull request to the ``dev`` branch.
36
36
$ git checkout -b feature/my_new_feature
37
37
```
38
38
and start making changes. Always use a feature branch. It’s a good practice.
39
-
6. Develop the feature on your feature branch on your computer, using Git to do the version control. When you’re done editing, add changed files using ``git add`` and then``git commit``.
39
+
6. Develop the feature on your feature branch on your computer, using Git to do the version control. When you’re done editing, add changed files using ``git add .`` and then``git commit``
40
40
Then push the changes to your GitHub account with:
41
41
42
42
``` bash
@@ -55,4 +55,4 @@ We follow the PEP8 style guide for Python. Docstrings follow google style.
55
55
* Use the present tense ("Add feature" not "Added feature")
56
56
* Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
57
57
* Limit the first line to 72 characters or less
58
-
* Reference issues and pull requests liberally after the first line
58
+
* Reference issues and pull requests liberally after the first line
0 commit comments