Documentation Index
Fetch the complete documentation index at: https://docs.claude.com/llms.txt
Use this file to discover all available pages before exploring further.
將此提示複製到我們的開發者 Console 中親自試用!
| 角色 | 內容 |
|---|
| 使用者 | 我已經對本地檔案進行了一些更改,想要將它們保存到本地 Git 儲存庫中。我應該使用什麼 Git 命令? |
範例輸出
要將您對本地檔案所做的更改保存到本地 Git 儲存庫中,您應該使用以下 Git 命令:
-
git add . 或 git add <file>
- 此命令會暫存您所做的更改,準備將它們提交。
. 會添加當前目錄及其子目錄中的所有更改。如果您只想暫存特定檔案,請將 . 替換為檔案名稱或路徑。
-
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 請求
Python
TypeScript
AWS Bedrock Python
AWS Bedrock TypeScript
Vertex AI Python
Vertex AI TypeScript
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)
import Anthropic from "@anthropic-ai/sdk";
const anthropic = new Anthropic({
apiKey: "my_api_key", // defaults to process.env["ANTHROPIC_API_KEY"]
});
const msg = await anthropic.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?"
}
]
}
]
});
console.log(msg);
from anthropic import AnthropicBedrock
# See https://docs.claude.com/claude/reference/claude-on-amazon-bedrock
# for authentication options
client = AnthropicBedrock()
message = client.messages.create(
model="anthropic.claude-sonnet-4-5-20250929-v1:0",
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)
import AnthropicBedrock from "@anthropic-ai/bedrock-sdk";
// See https://docs.claude.com/claude/reference/claude-on-amazon-bedrock
// for authentication options
const client = new AnthropicBedrock();
const msg = await client.messages.create({
model: "anthropic.claude-sonnet-4-5-20250929-v1:0",
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?"
}
]
}
]
});
console.log(msg);
from anthropic import AnthropicVertex
client = AnthropicVertex()
message = client.messages.create(
model="claude-sonnet-4@20250514",
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)
import { AnthropicVertex } from '@anthropic-ai/vertex-sdk';
// Reads from the `CLOUD_ML_REGION` & `ANTHROPIC_VERTEX_PROJECT_ID` environment variables.
// Additionally goes through the standard `google-auth-library` flow.
const client = new AnthropicVertex();
const msg = await client.messages.create({
model: "claude-sonnet-4@20250514",
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?"
}
]
}
]
});
console.log(msg);