跳到主要内容

git常用使用方法

1. 克隆代码

一般克隆

git clone https://github.com/user00000001/user00000001.github.io.git --tags

带子模块克隆

git clone https://github.com/user00000001/user00000001.github.io.git --recursive

克隆指定分/提交/标签

选项-b可放在clone后面

git clone https://github.com/user00000001/user00000001.github.io.git -b master

快速克隆代码

git clone https://github.com/user00000001/user00000001.github.io.git --depth 1

2. 同步代码

一般同步

**********************!!!PROTECTION POLICY!!!**********************
Waiting For The Next Deployment, Maybe It Would Be Displayed After That.

3. 提交代码

git add .
git commit -m "update. " --signoff
git commit -a # 编辑器交互式 vi/nano终端操作
git commit -a --amend

4. 子模块操作

**********************!!!PROTECTION POLICY!!!**********************
Waiting For The Next Deployment, Maybe It Would Be Displayed After That.
cd <submodule_repo_root_path>
git commit -a
git checkout -b tmp
git chekcout master
git merge tmp
git branch -v
git branch -D tmp
git push origin master # 放在主库提交后提交
cd <repo_root_path>
git commit -a
git push origin master

5. 子树操作

**********************!!!PROTECTION POLICY!!!**********************
Waiting For The Next Deployment, Maybe It Would Be Displayed After That.

6. worktree操作

git worktree list
git worktree add path commit_id
git worktree remove path