@@ -262,8 +262,9 @@ after updating.
262262Contributing to the documentation
263263=================================
264264
265- If you're not the developer type, contributing to the documentation is still of
266- huge value. You don't even have to be an expert on *pandas * to do so! In fact,
265+ Contributing to the documentation benefits everyone who uses *pandas *.
266+ We encourage you to help us improve the documentation, and
267+ you don't have to be an expert on *pandas * to do so! In fact,
267268there are sections of the docs that are worse off after being written by
268269experts. If something in the docs doesn't make sense to you, updating the
269270relevant section after you figure it out is a great way to ensure it will help
@@ -966,32 +967,6 @@ Now you can commit your changes in your local repository::
966967
967968 git commit -m
968969
969- Combining commits
970- -----------------
971-
972- If you have multiple commits, you may want to combine them into one commit, often
973- referred to as "squashing" or "rebasing". This is a common request by package maintainers
974- when submitting a pull request as it maintains a more compact commit history. To rebase
975- your commits::
976-
977- git rebase -i HEAD~#
978-
979- Where # is the number of commits you want to combine. Then you can pick the relevant
980- commit message and discard others.
981-
982- To squash to the master branch do::
983-
984- git rebase -i master
985-
986- Use the ``s`` option on a commit to ``squash``, meaning to keep the commit messages,
987- or ``f`` to ``fixup``, meaning to merge the commit messages.
988-
989- Then you will need to push the branch (see below) forcefully to replace the current
990- commits with the new ones::
991-
992- git push origin shiny-new-feature -f
993-
994-
995970Pushing your changes
996971--------------------
997972
@@ -1056,7 +1031,6 @@ updated. Pushing them to GitHub again is done by::
10561031This will automatically update your pull request with the latest code and restart the
10571032:ref:`Continuous Integration <contributing.ci>` tests.
10581033
1059-
10601034Delete your merged branch (optional)
10611035------------------------------------
10621036
0 commit comments