소스 검색

Always use full-sha1 object id

master
10sr 6 년 전
부모
커밋
58b11af332
로그인 계정: 10sr GPG 키 ID: 7BEC428194130EB2
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. +5
    -3
      emacs.el

+ 5
- 3
emacs.el 파일 보기

@@ -1,6 +1,6 @@
;;; emacs.el --- 10sr emacs initialization

;; Time-stamp: <2018-10-18 14:42:27 JST 10sr>
;; Time-stamp: <2018-10-18 14:50:11 JST 10sr>

;;; Code:

@@ -2473,8 +2473,8 @@ When PATH is omitted or nil, it is calculated from current file or directory."
(defun git-walktree--open-noselect (commitish path object)
"Open git tree buffer of COMMITISH.
When PATH was given and non-nil open that, otherwise open root tree.
When OBJECT was given and non-nil, assume that is the object of COMMITISH:PATH
without checking it."
When OBJECT was given and non-nil, assume that is the full sha1 object id of
COMMITISH:PATH without checking it."
(cl-assert commitish)
(let ((type (git-walktree--git-plumbing "cat-file"
"-t"
@@ -2489,6 +2489,8 @@ without checking it."

(setq object (or object
(git-walktree--resolve-object commitish path)))
(setq object (git-walktree--git-plumbing "rev-parse"
object))
(cl-assert object)

(let ((type (git-walktree--git-plumbing "cat-file"


불러오는 중...
취소
저장