Linux命令行 · 2024年12月18日 0

git常用命令

#### 克隆 ``` git clone https://xxxxxxxxxxxxxxxxxxxxxx ``` #### 切换分支 ``` git checkout xxx ``` #### 查看状态 ``` git status ``` #### 添加修改 ``` git add . ``` #### 提交 ``` git commit -m "自定义内容" ``` #### 提交到远程服务器 ``` git push ``` #### 拉取远程更新 ``` git pull ``` ### 子模块 #### 更新所有子模块 ``` git submodule update --init ```