summaryrefslogtreecommitdiff
path: root/doc/source/dev/gitwash
Commit message (Collapse)AuthorAgeFilesLines
* DOC: Convert titles to sentence case (#23643)Talha M2023-04-261-1/+1
| | | Partially addresses #16261.
* DOC: Add instruction to do `git pull`ganesh-k132022-12-051-0/+4
|
* DOC: Add instruction to initialize git submodules (#22543)Juan Luis Cano Rodríguez2022-11-071-0/+4
| | | | Add instructions to developer documentation about initializing git submodules before local build.
* MAINT, DOC: discard repeated wordsDimitri Papadopoulos2022-01-131-1/+1
|
* DOC: git:// protocol deprecated by github. (#20789)Matthias Bussonnier2022-01-111-1/+1
| | | | | See https://github.blog/2021-09-01-improving-git-protocol-security-github/ Tell users to use https://
* DOC: fix clone over ssh instructions #18917 (#18918)legoffant2021-05-061-1/+1
|
* MAINT: Update master to main after branch rename (gh-18544)Stefan van der Walt2021-03-043-16/+16
| | | | | | | | | | | | | | | | | | | | | | | * Upload docs to main branch of neps/devdocs * Update `master` to `main` to be consistent with current state of renaming * Remove badges from README * Replace remaining instances of `master` with `main` * Add back logo * Fix CircleCI branch checks * Fix GA branch name * master->main in issue templates. * master->main for 2 links to numpy archive. * Change master to main in NEP 23 Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
* DOC: Simplify and update git setup page (gh-16671)bjnath2020-06-264-99/+132
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * DOC: Simplify and update git setup page Changed title from "Getting started with Git development" to more specific "Setting up git for NumPy development" Updated the outdated GitHub screenshot for forking button, added more screenshots. Simplified the narrative. Fixed bad github links (always pointed to NumPy's github). Clarified SSH setup, role, and effect on git remote -v. Clarified meaning of "upstream" and "origin". Replaced read of .git/config (platform-specific) with call to git config. * DOC: Add links, remove section from PR #16671 Per suggestion, removed outdated advice on getting pull branches. Added back rST anchors, should have left them in. * DOC: Add page anchor for PR #16671 Add '.. _development-setup:' page anchor.
* DOC: Fixes for 18 broken links (#16472)bjnath2020-06-061-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * DOC: Fixes for 18 broken links This, with PR #16465, should fix nearly all the remaining broken links on the site. 4 or 5 others should be easy to fix and just need attention from someone more knowledgeable -- will open an issue. For release notes with dead links, I could usually find links on archive.org for roughly contemporary versions. * DOC: Update to "Fixes for 18 broken links #16472" * Obsolete links, previously commented out, now deleted: https://github.com/numpy/numpy/pull/16472#discussion_r433928958 * Semantic markup for reference to Python class: https://github.com/numpy/numpy/pull/16472#discussion_r433553928 * Missing :ref: in internal link: https://github.com/numpy/numpy/pull/16472#discussion_r433554484 Not included: Resolution on using external/internal doc link in .py: https://github.com/numpy/numpy/pull/16472#discussion_r433554824 * DOC: Add internal link for 'Fixes for 18 broken links' PR #16472 Making reference [1] an internal link in function_base.py => numpy.vectorize.html * DOC: Redirect 2 link fixes in PR #16472 * governance.rst link reverted * ununcs.rst `overridden` link goes where it was meant to per https://github.com/numpy/numpy/pull/16472#pullrequestreview-424666070
* DOC: Fix development_workflow linksBen Nathanson2020-06-011-7/+7
| | | | | | | | | | | | | | Fixed links for branch delete and graph visualizer. Updated instructions for branch delete (git since 1.7.0 (Sept 2010) has allowed --delete sted ':'). 'Learn git' link pointed to Bitbucket instructions; replaced with GitHub instructions. Minor rewording in 'Pushing changes to the main repo'. This is NOT a review of the page, only some fixes.
* DOC: Fix unrendered linkskritisingh12019-06-301-0/+2
|
* DOC: changes from reviewmattip2019-04-232-11/+3
|
* DOC: reorganize developer docs, use scikit-image as a base for changemattip2019-04-217-565/+28
|
* HTTP -> HTTPS, and other linkrot fixesMike Toews2018-06-162-35/+35
|
* MAINT: Misc. typos (#11005)luzpaz2018-04-301-1/+1
| | | | | | | | | User- and non-user-facing typos. Some source typos fixes as well. Found via `codespell`.
* add missing glossary entries and link in missing documentmattip2018-04-111-0/+1
|
* DOC: cosmetic changes, document need for python3.6 to build docsmattip2018-04-101-3/+3
|
* DOC: promote development_workflow, make howtos visiblemattip2018-04-102-1/+1
|
* DOC: Fix missing asterisks in git development_setup doc pageAndras Deak2017-06-271-1/+1
| | | | | The remote upstream fetch git-config command was missing two asterisks, most likely lost in a markdown accident.
* git:// to https://Shitian Ni2017-05-252-16/+5
|
* updated development git document on protocolsShitian Ni2017-05-252-0/+6
|
* DOC: update docs and comments for move of mailing list to python.orgRalf Gommers2017-03-261-31/+1
|
* DOC: add BENCH prefix to documented commit prefixesJulian Taylor2017-03-251-0/+1
|
* DOC: Fix typosJakub Wilk2017-03-171-1/+1
|
* DOC: change development instructions from SSH to HTTPS access.Ralf Gommers2016-10-241-5/+37
| | | | | | | | | This is easier to get going, and is the recommended access method by GitHub itself: https://help.github.com/articles/which-remote-url-should-i-use/ Also add instructions for pulling from upstream including PRs by default.
* change all non-code instances of Numpy to NumPyPierre de Buyl2016-09-061-2/+2
| | | | | | | | | Instances remain for NumpyVersion and Numpy.rec.fromarrays that are references to code. Release notes were left unchanged. see issue #7986
* DOC: dev: stop recommending keeping local master updated with upstream/masterPauli Virtanen2016-02-211-94/+69
| | | | | | Use the simpler `git fetch; ... upstream/master` approach instead of updating the local master branch. Keeping the local master branch in sync with upstream is usually not necessary.
* DOC: Commit message lines should not excede 72 characters.Charles Harris2015-05-251-1/+1
| | | | | The reason is that git log indents parts of the message and longer lines will wrap. Linus has a post on this somewhere.
* DOC: add "build and test" section to developer guide. Closes gh-5465.Ralf Gommers2015-01-201-1/+1
| | | | [ci skip]
* DOC: Update Development Workflow PageRyan Nelson2015-01-104-193/+166
| | | | | | | | | | | | | | | | | | | | | | | | The "Basic Workflow" section of the Development Workflow page was reorganized to make it clearer to new users and remove/update old material. Major changes: - Moved the core developer notes. Core dev notes are confusing in basic usage information. Updated a couple of the commands - Added more commands and reorgaized the "New Feature Branch" section. Took some text from "Rebasing" and moved it here, because it was redundant. - Made many changes to the "Editing Workflow" to clarify commands. Moved some git push stuff into this section as well. - Moved pull request section to just after editing workflow. Removed outdated images and simplified the text. Make code review requirements explicit. - Moved rebasing and troubleshooting sections to the end. Could add more here later. - Links renamed and broken link removed.
* DOC: Notes on backporting.Blake Griffith2013-10-102-1/+62
|
* STY: Giant whitespace cleanup.Charles Harris2013-08-185-12/+9
| | | | Now is as good a time as any with open PR's at a low.
* move to www.numpy.orgSandro Tosi2012-12-301-1/+1
|
* DOC: expand sections on commit messages and merging/rebasing in the devguide.Ralf Gommers2012-09-231-2/+16
| | | | This commit address comments from Charles on PR #455.
* DOC: one more edit to the dev-guide.Ralf Gommers2012-09-221-1/+7
| | | | | Recommend to update master before creating your feature branch. Thanks to Nicky van Foreest for feedback on the dev-guide.
* DOC: remove section "Patching" from dev-guide.Ralf Gommers2012-09-224-133/+6
| | | | | This section is outdated, and following it pretty much ensures that your patches will languish in Trac.
* DOC: a few edits to make "Development Workflow" in the dev guide clearer.Ralf Gommers2012-09-221-12/+13
|
* DOC: document in dev-guide how to write a good commit message.Ralf Gommers2012-09-221-0/+28
|
* DOC: merge wiki docs - edits under doc/.Ralf Gommers2012-07-071-4/+3
|
* DOC: merge wiki doc edits.Ralf Gommers2012-03-031-2/+5
|
* DOC: dev: update also the overviewPauli Virtanen2010-10-291-2/+3
|
* DOC: dev: update instructions on sending patchesPauli Virtanen2010-10-291-1/+6
|
* DOC: dev: try to improve Git workflow docsPauli Virtanen2010-10-1910-121/+355
|
* DOC: regenerate gitwash docsPauli Virtanen2010-10-0417-0/+871