將此提示複製到我們的開發者 Console 中親自試用!
角色內容
使用者我已經對本地檔案進行了一些更改,想要將它們保存到本地 Git 儲存庫中。我應該使用什麼 Git 命令?

範例輸出

要將您對本地檔案所做的更改保存到本地 Git 儲存庫中,您應該使用以下 Git 命令:
  1. git add .git add <file>
    • 此命令會暫存您所做的更改,準備將它們提交。. 會添加當前目錄及其子目錄中的所有更改。如果您只想暫存特定檔案,請將 . 替換為檔案名稱或路徑。
  2. git commit -m "Your commit message"
    • 此命令會將暫存的更改提交到您的本地 Git 儲存庫。-m 標誌允許您提供描述所做更改的提交訊息。將 "Your commit message" 替換為您更改的簡短描述性摘要。
例如,如果您對名為 example.txt 的檔案進行了更改,您會執行:
git add example.txt
git commit -m "Update example.txt with new content"

這些命令會將您的更改保存在本地 Git 儲存庫中,使用提供的訊息創建新的提交。您稍後可以將這些更改推送到遠端儲存庫或繼續在本地分支上工作。 記住要在終端或命令提示字元中從您的 Git 儲存庫目錄內執行這些命令。

API 請求

import anthropic

client = anthropic.Anthropic(  # defaults to os.environ.get("ANTHROPIC_API_KEY")
    api_key="my_api_key",
)
message = client.messages.create(
    model="claude-sonnet-4-5",
    max_tokens=1000,
    temperature=0,
    messages=[
        {
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": "I have made some changes to my local files and I want to save them in my local Git repository. What Git command should I use?",
                }
            ],
        }
    ],
)
print(message.content)