public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] [PATCH v3 00/21] devmanual: update the docs for post git-migration
@ 2016-02-04  0:57 gokturk
  2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 01/21] general-concepts/manifest: drop the use of "CVS keyword expansion" #558642 gokturk
                   ` (21 more replies)
  0 siblings, 22 replies; 31+ messages in thread
From: gokturk @ 2016-02-04  0:57 UTC (permalink / raw
  To: devmanual; +Cc: gentoo-dev

From: Gokturk Yuksek <gokturk@binghamton.edu>

Hi,

This is the third iteration of the patch series that attempts to
update the devmanual for the git migration.

The updates included in the third revision are:
- Added a new subsection called "Git Commit Message Format" based on
  the commit message format included in the Gentoo Git Workflow wiki
  and the feedback provided on this mailing list.
- Based on the discussion wrt how well git deals with compressed
  patches, I've decided to remove "because git does not play well with
  binary files".  It's a policy we have been following for years
  irrespective of how git deals with them.
- Rewrote the subsection on "Removing a package" so it does not use
  'git commit -m'. Rewrote the example and added the corresponding
  commit message as an example.
- The subsection "User-submitted Ebuilds" is modified to mention the
  use of git style tags in commit messages and a reference to the
  commit message format policy section has been added.

You can review the changes on Github for your own convenience:
https://github.com/gktrk/devmanual.gentoo.org/compare/master...gktrk:devmanual-git-migration-v3

If you want to see the diff between v2 and v3, you can clone the
Github repo and check the diff between the branches
"devmanual-git-migration-v2" and "devmanual-git-migration-v3".

The HTML version of the devmanual with the proposed changes can be found at:
http://devmanual.qui-gon.org/

Gokturk Yuksek (19):
  general-concepts/manifest: drop the use of "CVS keyword expansion"
    #558642
  general-concepts/mirrors: substitute "CVS" with "the git tree" #558642
  general-concepts/tree: substitute "CVS" with "git" #558642
  general-concepts/tree: replace the mention of ChangeLog #558642
  ebuild-writing/misc-files: replace the code for cvs commit with git
    #558642
  ebuild-writing/user-submitted: do not put user information in
    ChangeLog #558642
  appendices/editor-configuration/emacs: remove the CVS related setting
    #558642
  ebuild-maintenance: rewrite the text on adding binary files to the
    tree #558642
  ebuild-maintenance: rewrite the subsection on commit policy for git
    #558642
  ebuild-maintenance: rewrite the subsection on upgrading ebuilds for
    git #558642
  ebuild-maintenance: rewrite the subsection on moving ebuilds for git
    #558642
  ebuild-maintenance: rewrite the subsection on removing ebuilds for git
    #558642
  ebuild-maintenance: rewrite the subsection on removing packages for
    git #558642
  ebuild-maintenance: replace "cvs commit" with "git commit" #558642
  general-concepts/git-to-rsync/diagram: update the description for git
    #558642
  general-concepts/git-to-rsync/diagram: update the description for git
    #558642
  general-concepts/tree: remove the reference to the ChangeLog #485314
  ebuid-maintenance: add a new section called "Git Commit Message
    Format" #558642
  ebuild-writing/user-submitted: mention git style tags in commit
    messages #558642

Michael Orlitzky (2):
  ebuild-writing/misc-files: remove ChangeLog section #485314
  tools-reference: remove the echangelog page #485314

 appendices/editor-configuration/emacs/text.xml |   4 +-
 ebuild-maintenance/text.xml                    | 281 +++++++++++++++++++------
 ebuild-writing/common-mistakes/text.xml        |   2 +-
 ebuild-writing/misc-files/changelog/text.xml   | 111 ----------
 ebuild-writing/misc-files/metadata/text.xml    |  16 +-
 ebuild-writing/misc-files/text.xml             |   1 -
 ebuild-writing/user-submitted/text.xml         |  14 +-
 general-concepts/git-to-rsync/diagram.svg      |   2 +-
 general-concepts/manifest/text.xml             |   4 +-
 general-concepts/mirrors/diagram.svg           |   2 +-
 general-concepts/mirrors/text.xml              |   2 +-
 general-concepts/tree/text.xml                 |   5 +-
 tools-reference/echangelog/text.xml            |  32 ---
 tools-reference/text.xml                       |   1 -
 14 files changed, 247 insertions(+), 230 deletions(-)
 delete mode 100644 ebuild-writing/misc-files/changelog/text.xml
 delete mode 100644 tools-reference/echangelog/text.xml

-- 
2.4.10



^ permalink raw reply	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2016-02-05  6:51 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-04  0:57 [gentoo-dev] [PATCH v3 00/21] devmanual: update the docs for post git-migration gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 01/21] general-concepts/manifest: drop the use of "CVS keyword expansion" #558642 gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 02/21] general-concepts/mirrors: substitute "CVS" with "the git tree" #558642 gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 03/21] general-concepts/tree: substitute "CVS" with "git" #558642 gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 04/21] general-concepts/tree: replace the mention of ChangeLog #558642 gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 05/21] ebuild-writing/misc-files: replace the code for cvs commit with git #558642 gokturk
2016-02-04  2:38   ` Brian Dolbec
2016-02-04 11:05     ` Ulrich Mueller
2016-02-05  6:51       ` Göktürk Yüksek
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 06/21] ebuild-writing/user-submitted: do not put user information in ChangeLog #558642 gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 07/21] appendices/editor-configuration/emacs: remove the CVS related setting #558642 gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 08/21] ebuild-maintenance: rewrite the text on adding binary files to the tree #558642 gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 09/21] ebuild-maintenance: rewrite the subsection on commit policy for git #558642 gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 10/21] ebuild-maintenance: rewrite the subsection on upgrading ebuilds " gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 11/21] ebuild-maintenance: rewrite the subsection on moving " gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 12/21] ebuild-maintenance: rewrite the subsection on removing " gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 13/21] ebuild-maintenance: rewrite the subsection on removing packages " gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 14/21] ebuild-maintenance: replace "cvs commit" with "git commit" #558642 gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 15/21] general-concepts/git-to-rsync/diagram: update the description for git #558642 gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 16/21] " gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 17/21] ebuild-writing/misc-files: remove ChangeLog section #485314 gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 18/21] tools-reference: remove the echangelog page #485314 gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 19/21] general-concepts/tree: remove the reference to the ChangeLog #485314 gokturk
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 20/21] ebuid-maintenance: add a new section called "Git Commit Message Format" #558642 gokturk
2016-02-04 10:05   ` Ulrich Mueller
2016-02-04  0:57 ` [gentoo-dev] [PATCH v3 21/21] ebuild-writing/user-submitted: mention git style tags in commit messages #558642 gokturk
2016-02-04  1:10 ` [gentoo-dev] [PATCH v3 00/21] devmanual: update the docs for post git-migration Daniel Campbell
2016-02-04  1:15   ` NP-Hardass
2016-02-04  1:47     ` Daniel Campbell
2016-02-04  1:49   ` Göktürk Yüksek
2016-02-04  1:53     ` Daniel Campbell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox