github / github/copilot-cli

Launching VS Code from Copilot CLI drops empty GIT_CONFIG_VALUE and breaks Git discovery

Đang mở
#4,531 1 bình luận 2 reaction 0 người được giao Xem trên GitHub

Chưa có ai nhận issue này.

area:configuration area:platform-windows
Ngôn ngữ chính
Shell
Star
11.2k
Fork
1.9k
Merge trung bình
14 giờ 16 phút
Pull request đã merge (30 ngày)
6

Mô tả

Describe the bug

Copilot CLI exports an indexed GIT_CONFIG_COUNT / GIT_CONFIG_KEY_* / GIT_CONFIG_VALUE_* block into shell-command child processes. The core.fsmonitor override is represented by an empty value.

When VS Code is launched from the Copilot CLI environment with code ., VS Code's Git extension retains GIT_CONFIG_COUNT=4 and GIT_CONFIG_KEY_3=core.fsmonitor, but GIT_CONFIG_VALUE_3 is absent. Every Git command then fails before repository discovery:

error: missing config value GIT_CONFIG_VALUE_3
fatal: unable to parse command-line config

The Source Control pane consequently does not recognize the directory as a Git repository.

Affected version

GitHub Copilot CLI 1.0.81-3

Steps to reproduce the behavior

  1. Start Copilot CLI on Windows in a Git repository.

  2. Launch VS Code from the CLI environment:

    code .
    
  3. Open the Source Control pane or inspect the VS Code Git log.

  4. Observe repository discovery failing, for example:

    > git rev-parse --show-toplevel
    error: missing config value GIT_CONFIG_VALUE_3
    fatal: unable to parse command-line config
    

The relevant environment inherited from Copilot CLI is:

GIT_CONFIG_COUNT=4
GIT_CONFIG_KEY_0=safe.bareRepository
GIT_CONFIG_VALUE_0=explicit
GIT_CONFIG_KEY_1=safe.bareRepository
GIT_CONFIG_VALUE_1=explicit
GIT_CONFIG_KEY_2=credential.interactive
GIT_CONFIG_VALUE_2=never
GIT_CONFIG_KEY_3=core.fsmonitor
GIT_CONFIG_VALUE_3=<empty>

Git works directly in the Copilot shell because the empty variable is still present and resolves as core.fsmonitor=false. Clearing the injected block before launching VS Code avoids the failure:

Get-ChildItem Env:GIT_CONFIG_* | Remove-Item
code --new-window .

Expected behavior

Programs launched from Copilot CLI should be able to run Git normally. Internal Git hardening overrides should either be scoped to Copilot's own Git subprocesses, use a non-empty value such as core.fsmonitor=false, or otherwise remain a complete valid indexed block in child applications.

Additional context

  • OS: Windows NT 10.0.26200.0, x64
  • PowerShell: 7.6.5
  • VS Code: 1.134.0, x64
  • Git: 2.55.0.windows.3
  • Copilot CLI's safe.bareRepository=explicit hardening is intentional; the failure is specifically the process-wide propagation of an empty indexed value into a GUI child process.

Hướng dẫn đóng góp

Mở hướng dẫn đóng góp

Bắt đầu từ đâu

  1. Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
  2. Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
  3. Fork repository và làm thay đổi trên một nhánh.
  4. Mở pull request có tham chiếu số hiệu của issue.

Hướng nghiên cứu

Báo cáo không nêu tên tệp nào trong repository hoặc test nào. Hãy bắt đầu bằng cách tái hiện việc khởi chạy code . trên Windows và theo dõi nơi Copilot CLI xây dựng rồi export môi trường GIT_CONFIG_* được lập chỉ mục; so sánh điều đó với việc thực thi Git trực tiếp. Được xem là hoàn tất khi các ứng dụng con nhận được một block đầy đủ, hợp lệ, hoặc không nhận block ở cấp toàn bộ process, và git rev-parse --show-toplevel thành công trong VS Code.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Đánh giá

Công nghệ
git, shell, vscode
Lĩnh vực
cli, devtools
Loại issue
Lỗi
Độ khó
4/5
Thời gian dự kiến
3-5 ngày
Mức độ hoạt động
Sôi nổi
Độ rõ ràng
Khá rõ ràng
Mức phù hợp với người mới
58/100

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.