2017-05-30 32 views
-1

我無法在任何地方找到它。如果我在rebase -i中,並且我想在選擇列表中添加一個換行符,那麼我該怎麼做?我把一個選秀權退了一步,選秀權被附加到了上面的一行,我只是想再次下調。如何在Git interactive rebase中添加行返回

這是WebStorm,終端:

enter image description here

▶混帳配置--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 
[email protected] 
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 
+0

按「Enter」,我猜? – Ryan

+1

你問如何使用文本編輯器? – SLaks

+0

輸入不起作用 – PositiveGuy

回答

0

我想你進入到vi世界。要用vi插入文本,您必須按i,然後才能輸入文本。然後按ESC,然後w寫,並q退出。關於vi的知識還有很多,但這是最小的求生套件。

+0

說實話我總是使用'emacs'。 –

+1

非常感謝,作品! – PositiveGuy

相關問題