> ## Documentation Index
> Fetch the complete documentation index at: https://ikun.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 创建 Git 仓库

创建 Git 仓库以与团队共享您的应用程序。

<Steps>
  <Step title="创建 Git 仓库">
    创建一个新的 [Git 仓库](https://github.com/new)。
  </Step>

  <Step title="推送您的代码">
    将您的代码推送到 Git 仓库。

    ```bash terminal theme={null}
    git init
    git add .
    git commit -m "初始化 LLM App"
    git branch -M main
    git remote add origin https://github.com/[YOUR_GIT_REPO].git
    git push -u origin main
    ```
  </Step>

  <Step title="邀请您的团队成员">
    请您的团队成员遵循 [新用户设置步骤](/workspaces/workspace-management/new-users) 来使用此工作区。
  </Step>
</Steps>
