1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-26 15:40:06 +08:00
SpaceVim/docs/cn/layers/VersionControl.md
Wang Shidong 1472a549c6
Doc: improve SpaceVim doc (#1758)
* Update shell layer doc

* Update script for update layer index

* Update script for update layer index

* Update colorscheme layer doc

* Update autocomplete layer doc

* Update checkers layer doc

* Update chinese layer doc

* Update chat layer doc

* Update faq

* Update VersionControl layer doc

* Update help file

* Update cscope layer doc

* Use cn group

* Update debug layer doc

* Update ctrlp layer doc

* Update default layer doc

* Improve the community page

* Improve the community page

* Update default layer doc

* Update denite layer doc

* Update git layer doc

* Update ui layer doc

* Update tags layer doc

* Update leaderf layer doc

* Update fzf layer doc

* Update unite layer doc

* Update tools layer doc

* Update index

* Update tools#dash layer doc

* Update lsp layer doc

* Update faq
2018-05-27 13:05:57 +08:00

53 lines
1.6 KiB
Markdown

---
title: "SpaceVim VersionControl 模块"
description: "这一模块为 SpaceVim 提供了通用的代码版本控制支持,该模块支持 Git、Mercurial、Bazaar、SVN 等等多种后台工具。"
lang: cn
---
# [可用模块](../) >> VersionControl
<!-- vim-markdown-toc GFM -->
- [模块介绍](#模块介绍)
- [快捷键](#快捷键)
<!-- vim-markdown-toc -->
## 模块介绍
这一模块为 SpaceVim 提供了通用的代码版本控制支持,该模块支持 Git、Mercurial、Bazaar、SVN 等等多种后台工具。
为 SpaceVim 提供如下特性:
- 在左侧栏显示代码改动标记
- 在状态栏显示 vcs 版本信息
## 快捷键
| 按键 | 描述 |
| --------- | -------------------------- |
| `SPC g .` | 打开版本控制临时快捷键菜单 |
**临时快捷键菜单**
| 按键 | 描述 |
| ----- | ---------------------------- |
| `w` | Stage 当前文件 |
| `u` | Unstage 当前文件 |
| `n` | 下一个 vcs hunk |
| `N/p` | 上一个 vcs hunk |
| `t` | 启用/禁用 diff signs |
| `l` | 显示仓库 log |
| `D` | Show diffs of unstaged hunks |
| `f` | Fetch for repo with popup |
| `F` | Pull repo with popup |
| `P` | Push repo with popup |
| `c` | Commit with popup |
| `C` | Commit |
**通用快捷键**
| 按键 | 描述 |
| ----- | ------------------- |
| `[ c` | 跳至上一个 vcs hunk |
| `] c` | 跳至下一个 vcs hunk |