1. 08 12月, 2005 1 次提交
  2. 15 11月, 2005 1 次提交
  3. 04 11月, 2005 1 次提交
  4. 21 9月, 2005 1 次提交
  5. 08 9月, 2005 1 次提交
    • J
      Big tool rename. · 215a7ad1
      Junio C Hamano 提交于
      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: NJunio C Hamano <junkio@cox.net>
      215a7ad1
  6. 31 8月, 2005 1 次提交
  7. 18 8月, 2005 1 次提交
  8. 09 7月, 2005 1 次提交
  9. 28 6月, 2005 1 次提交
  10. 23 5月, 2005 3 次提交
  11. 11 5月, 2005 3 次提交
  12. 10 5月, 2005 1 次提交
    • J
      Rename environment variables. · d19938ab
      Junio C Hamano 提交于
      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: NJunio C Hamano <junkio@cox.net>
      d19938ab
  13. 18 4月, 2005 1 次提交
  14. 12 4月, 2005 1 次提交
  15. 08 4月, 2005 1 次提交