VS 代码配置 Git 同步
VS Code configuring Git Sync
我正在使用代码处理 git 存储库中的一些文件,当我在一个分支上进行一些更改时,我的一位同事在同一分支中进行了更改 (冲突不重要) 和 运行 git/sync
命令它 git pull --merge
我想配置它做一些事情 git pull --rebase
这个可以配置吗?
这可以通过 git 配置进行配置。 VS Code中没有单独的选项:
git config pull.rebase true
自 2018 年 9 月发布以来,您现在可以使用 Sync+Rebase
https://code.visualstudio.com/updates/v1_28#_always-rebase-when-running-sync
The git.rebaseWhenSync
setting will let you configure the Sync command to always use rebase instead of merge when running
我正在使用代码处理 git 存储库中的一些文件,当我在一个分支上进行一些更改时,我的一位同事在同一分支中进行了更改 (冲突不重要) 和 运行 git/sync
命令它 git pull --merge
我想配置它做一些事情 git pull --rebase
这个可以配置吗?
这可以通过 git 配置进行配置。 VS Code中没有单独的选项:
git config pull.rebase true
自 2018 年 9 月发布以来,您现在可以使用 Sync+Rebase https://code.visualstudio.com/updates/v1_28#_always-rebase-when-running-sync
The
git.rebaseWhenSync
setting will let you configure the Sync command to always use rebase instead of merge when running