diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2016-05-22 16:33:55 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-05-24 13:19:22 -0700 |
commit | ef23c347cf363118e236ae72fe6372443fae1ecf (patch) | |
tree | 6bbb26cf2d44e12682276337384b0ef86e538d04 /builtin/worktree.c | |
parent | worktree.c: use is_dot_or_dotdot() (diff) | |
download | tgif-ef23c347cf363118e236ae72fe6372443fae1ecf.tar.xz |
worktree: avoid 0{40}, too many zeroes, hard to read
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Reviewed-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/worktree.c')
-rw-r--r-- | builtin/worktree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/worktree.c b/builtin/worktree.c index aaee0e2fe8..b53f8024fc 100644 --- a/builtin/worktree.c +++ b/builtin/worktree.c @@ -262,7 +262,7 @@ static int add_worktree(const char *path, const char *refname, */ strbuf_reset(&sb); strbuf_addf(&sb, "%s/HEAD", sb_repo.buf); - write_file(sb.buf, "0000000000000000000000000000000000000000"); + write_file(sb.buf, sha1_to_hex(null_sha1)); strbuf_reset(&sb); strbuf_addf(&sb, "%s/commondir", sb_repo.buf); write_file(sb.buf, "../.."); |