2025年12月29日 星期一

Antigravity IDE 跟 VS code 共用一個remote config file [windows 11]

症狀: 

Antigravity 可以透過IDE設定,把config file path連結到特定位置。但是windows上可能還沒完善,所以IDE可以讀到cloud server 的位置,連線的時候還是會回到 [user]/.ssh/config

解決辦法:

透過softlink把config file連過去: (power shell, 記得備份原本的config檔。其實也可直接合併)


New-Item -ItemType SymbolicLink -Path "C:\Users\markliou\.ssh\config" -Target "Y:\Home\computer_sync\vs_code_remote_config"

沒有留言:

張貼留言

torch compile for cudagraph

option 1 TORCH_LOGS="graph_breaks" python transmitter_trainner.py option 2 import torch._dynamo # 這會把導致斷圖的原因直接印在螢幕上 torch._dynamo....