我无处可寻。如果我在rebase -i中,并且我想在选择列表中添加一个换行符,我该怎么做?我将一个选择权退回到远处并且选择附加在其上方的线上,我只想再将其移动。
这是在WebStorm,终端:
▶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
答案 0 :(得分:0)
我想你进入了vi
的世界。要使用vi
插入文字,您必须按i
,然后您才能输入文字。然后按ESC
,然后按w
进行编写,然后按q
退出。关于vi
还有很多东西可以学习,但这是最小的生存工具包。