Loading...
    • 開發者指南
    • API 參考
    • MCP
    • 資源
    • 發行說明
    Search...
    ⌘K
    資源
    概覽詞彙表系統提示詞
    使用案例
    概覽工單路由客戶支援 Agent內容審核法律摘要
    提示詞庫
    提示詞庫Cosmic Keystrokes企業先知網站精靈Excel 公式專家Google Apps 指令碼編寫者Python 除蟲高手時光旅行顧問說故事的夥伴引用你的來源SQL 巫師夢境解讀者雙關語專家烹飪創意家混成詞詩人Hal 幽默助手LaTeX 傳奇心情著色器Git 高手明喻達人倫理困境導航者會議記錄員習語闡釋者程式碼顧問函數製造者新詞創造者CSV 轉換器表情符號編碼器散文潤飾師觀點思考者瑣事產生器正念導師二年級簡化器VR 健身創新者個人識別資訊淨化器備忘錄大師職業教練評分大師繞口令面試問題製作者文法精靈謎語我這個程式碼澄清者外星人人類學家資料組織者品牌建立者效率估算者評論分類器方向解碼器激勵繆斯電子郵件提取器主控版主課程規劃者蘇格拉底賢者頭韻煉金術士未來時尚顧問多語言超能力產品命名專家哲學思考試算表巫師科幻情景模擬器自適應編輯器巴別塔廣播推文語氣檢測器機場代碼分析師
    Console
    Log in
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...
    Loading...

    Solutions

    • AI agents
    • Code modernization
    • Coding
    • Customer support
    • Education
    • Financial services
    • Government
    • Life sciences

    Partners

    • Amazon Bedrock
    • Google Cloud's Vertex AI

    Learn

    • Blog
    • Catalog
    • Courses
    • Use cases
    • Connectors
    • Customer stories
    • Engineering at Anthropic
    • Events
    • Powered by Claude
    • Service partners
    • Startups program

    Company

    • Anthropic
    • Careers
    • Economic Futures
    • Research
    • News
    • Responsible Scaling Policy
    • Security and compliance
    • Transparency

    Learn

    • Blog
    • Catalog
    • Courses
    • Use cases
    • Connectors
    • Customer stories
    • Engineering at Anthropic
    • Events
    • Powered by Claude
    • Service partners
    • Startups program

    Help and security

    • Availability
    • Status
    • Support
    • Discord

    Terms and policies

    • Privacy policy
    • Responsible disclosure policy
    • Terms of service: Commercial
    • Terms of service: Consumer
    • Usage policy
    提示詞庫

    Git gud

    根據使用者描述的版本控制操作生成適當的 Git 命令。

    將此提示複製到我們的開發者 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 請求

    • API 請求