From e780a8c4131569cb61388ff22d9ef57786d65d3c Mon Sep 17 00:00:00 2001 From: Alvin Date: Wed, 13 Sep 2023 16:32:35 +0800 Subject: [PATCH] update git.txt --- tools/git.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/git.txt b/tools/git.txt index 2ed17c2..3f773ec 100644 --- a/tools/git.txt +++ b/tools/git.txt @@ -11,6 +11,8 @@ git config --global "Your Name" git config --global "Email Address" git config --global credential.helper store 保存密码(每次要输密码/重复输密码) +git config user.name "Your Name" 配置当前仓库用户名 +git config user.email "Email Address" 配置当前仓库邮箱地址 ############################################################################## @@ -152,6 +154,7 @@ git checkout 切换至分支 git switch 切换至分支 (2.23 引入) git checkout -b 创建并切换至分支 git switch -c 创建并切换至分支 +git checkout origin/master -b 基于远程仓库下的分支创建一个新的分支 git branch 查看已有分支(* 表示当前分支) git merge 合并到当前分支(通常在master分支下操作) git merge --no-commit 合并到当前分支,但不提交