Skip to content
Snippets Groups Projects
  1. Mar 01, 2017
  2. Dec 15, 2016
  3. May 31, 2016
  4. Apr 03, 2016
  5. Feb 25, 2016
  6. Oct 10, 2014
    • Philip Oakley's avatar
      doc: add 'everyday' to 'git help' · 673151a9
      Philip Oakley authored
      
      The "Everyday GIT With 20 Commands Or So" is not accessible via the
      Git help system.  Move everyday.txt to giteveryday.txt so that "git
      help everyday" works, and create a new placeholder file everyday.html
      to refer people who follow existing URLs to the updated location.
      
      giteveryday.txt now formats well with AsciiDoc as a man page and
      refreshed content to a more command modern style.
      
      Add 'everyday' to the help --guides list and update git(1) and 5
      other links to giteveryday.
      
      Signed-off-by: default avatarPhilip Oakley <philipoakley@iee.org>
      Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
      673151a9
  7. Feb 01, 2013
  8. Jan 29, 2013
    • Junio C Hamano's avatar
      README: update stale and/or incorrect information · 33b29fd1
      Junio C Hamano authored
      
      Ramkumar Ramachandra noticed that the old address for the marc
      archive no longer works.  Update it to its marc.info address,
      and also refer to the gmane site.
      
      Remove the reference to "note from the maintainer", which is not
      usually followed by any useful discussion on status, direction nor
      tasks.
      
      Also replace the reference to "What's in git.git" with "What's
      cooking".
      
      Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
      33b29fd1
  9. Dec 16, 2012
  10. Feb 23, 2012
  11. Oct 07, 2009
  12. Oct 02, 2009
  13. Feb 25, 2009
    • Christian Couder's avatar
      README: fix path to "gitcvs-migration.txt" and be more consistent · aa98eb3d
      Christian Couder authored
      
      README suggested to look at "Documentation/gittutorial.txt" for the
      tutorial and to use "man git-commandname" for documentation of each
      command.
      
      This was not consistent because the tutorial can also be available with
      "man gittutorial" once git is installed, and the documentation for each
      command can be available at "Documentation/git-commandname.txt" before
      installing git.
      
      This patch tries to make the description more consistent.  It also fixes
      the path to the cvs-migration documentation that changed from
      "Documentation/cvs-migration.txt" to "Documentation/gitcvs-migration.txt".
      
      Signed-off-by: default avatarChristian Couder <chriscool@tuxfamily.org>
      Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
      aa98eb3d
  14. Jan 07, 2009
  15. Mar 26, 2007
  16. Jan 17, 2007
  17. Dec 08, 2005
  18. Nov 17, 2005
  19. Nov 15, 2005
  20. Nov 03, 2005
  21. Sep 20, 2005
  22. Sep 08, 2005
    • Junio C Hamano's avatar
      Big tool rename. · 215a7ad1
      Junio C Hamano authored
      
      As promised, this is the "big tool rename" patch.  The primary differences
      since 0.99.6 are:
      
        (1) git-*-script are no more.  The commands installed do not
            have any such suffix so users do not have to remember if
            something is implemented as a shell script or not.
      
        (2) Many command names with 'cache' in them are renamed with
            'index' if that is what they mean.
      
      There are backward compatibility symblic links so that you and
      Porcelains can keep using the old names, but the backward
      compatibility support  is expected to be removed in the near
      future.
      
      Signed-off-by: default avatarJunio C Hamano <junkio@cox.net>
      215a7ad1
  23. Aug 30, 2005
  24. Aug 17, 2005
  25. Aug 07, 2005
  26. Jul 09, 2005
  27. Jun 27, 2005
  28. May 22, 2005
  29. May 11, 2005
  30. May 10, 2005
    • Junio C Hamano's avatar
      Rename environment variables. · d19938ab
      Junio C Hamano authored
      
      H. Peter Anvin mentioned that using SHA1_whatever as an
      environment variable name is not nice and we should instead use
      names starting with "GIT_" prefix to avoid conflicts.  Here is
      what this patch does:
      
       * Renames the following environment variables:
      
          New name                           Old Name
      
          GIT_AUTHOR_DATE                    AUTHOR_DATE
          GIT_AUTHOR_EMAIL                   AUTHOR_EMAIL
          GIT_AUTHOR_NAME                    AUTHOR_NAME
          GIT_COMMITTER_EMAIL                COMMIT_AUTHOR_EMAIL
          GIT_COMMITTER_NAME                 COMMIT_AUTHOR_NAME
          GIT_ALTERNATE_OBJECT_DIRECTORIES   SHA1_FILE_DIRECTORIES
          GIT_OBJECT_DIRECTORY               SHA1_FILE_DIRECTORY
      
       * Introduces a compatibility macro, gitenv(), which does an
         getenv() and if it fails calls gitenv_bc(), which in turn
         picks up the value from old name while giving a warning about
         using an old name.
      
       * Changes all users of the environment variable to fetch
         environment variable with the new name using gitenv().
      
       * Updates the documentation and scripts shipped with Linus GIT
         distribution.
      
      The transition plan is as follows:
      
       * We will keep the backward compatibility list used by gitenv()
         for now, so the current scripts and user environments
         continue to work as before.  The users will get warnings when
         they have old name but not new name in their environment to
         the stderr.
      
       * The Porcelain layers should start using new names.  However,
         just in case it ends up calling old Plumbing layer
         implementation, they should also export old names, taking
         values from the corresponding new names, during the
         transition period.
      
       * After a transition period, we would drop the compatibility
         support and drop gitenv().  Revert the callers to directly
         call getenv() but keep using the new names.
      
         The last part is probably optional and the transition
         duration needs to be set to a reasonable value.
      
      Signed-off-by: default avatarJunio C Hamano <junkio@cox.net>
      d19938ab
  31. Apr 18, 2005
Loading