如何在Git交互式rebase中添加行返回

时间:2017-05-30 22:27:10

标签: git bash

我无处可寻。如果我在rebase -i中,并且我想在选择列表中添加一个换行符,我该怎么做?我将一个选择权退回到远处并且选择附加在其上方的线上,我只想再将其移动。

这是在WebStorm,终端:

enter image description here

▶git config --list

credential.helper=osxkeychain
credential.helper=osxkeychain
diff.tool=wstorm
difftool.prompt=false
difftool.wstorm.cmd=/Applications/WebStorm.app/Contents/MacOS/webstorm diff $LOCAL $REMOTE
merge.tool=wstorm
mergetool.wstorm.cmd=/Applications/WebStorm.app/Contents/MacOS/webstorm merge $LOCAL $REMOTE $BASE $MERGED
user.name=dschinkel
user.email=dschinkel@gmail.com
push.default=simple
color.branch=auto
color.diff=auto
color.status=auto
color.branch.current=yellow reverse
color.branch.local=yellow
color.branch.remote=green
color.diff.meta=yellow bold
color.diff.frag=magenta bold
color.diff.old=red bold
color.diff.new=green bold
color.status.added=yellow
color.status.changed=green
color.status.untracked=cyan
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
core.ignorecase=true
core.precomposeunicode=true

1 个答案:

答案 0 :(得分:0)

我想你进入了vi的世界。要使用vi插入文字,您必须按i,然后您才能输入文字。然后按ESC,然后按w进行编写,然后按q退出。关于vi还有很多东西可以学习,但这是最小的生存工具包。