如何在Mac OS X中开启或关闭显示隐藏文件命令

打开终端,输入:

defaults write com.apple.finder AppleShowAllFiles -bool true

此命令显示隐藏文件

defaults write com.apple.finder AppleShowAllFiles -bool false

此命令关闭显示隐藏文件

命令运行之后需要重新加载Finder:快捷键option+command+esc,选中Finder,重新启动即可

问题1:有关使用 Hexo 和 GitHub 搭建博客,出现 hexo -d 报错如何解决?(windows下)

1
2
3
4
5
6
7
INFO Deploying: git
INFO Clearing .deploy_git folder...
INFO Copying files from public folder...
warning: LF will be replaced by CRLF in 2016/10/26/hello-world/index.html.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in archives/2016/10/index.html.
The file will have its original line endings in your working directory.

jojo's blog

这个问题是这样解决的
第一删除你hexo 下面的.deploy_git文件夹
第二 运行
jojo's blog
第三 重新 hexo clean
hexo g
hexo d
第四 打开自己的网址,进行验证是否成功
jojo's blog

问题2:有关使用 Hexo 和 GitHub 搭建博客,出现 hexo -d 报错如何解决?(windows下)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
bash: /dev/tty: No such device or address
error: failed to execute prompt script (exit code 1)
fatal: could not read Username for 'https://github.com': Invalid argument
FATAL Something's wrong. Maybe you can find the solution here: http://hexo.io/do
cs/troubleshooting.html
Error: bash: /dev/tty: No such device or address
error: failed to execute prompt script (exit code 1)
fatal: could not read Username for 'https://github.com': Invalid argument
at ChildProcess.<anonymous> (E:\git\node_modules\hexo-util\lib\spawn.js:37:1
7)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at ChildProcess.cp.emit (E:\git\node_modules\cross-spawn\lib\enoent.js:40:29
)
at maybeClose (internal/child_process.js:850:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:5)
FATAL bash: /dev/tty: No such device or address
error: failed to execute prompt script (exit code 1)
fatal: could not read Username for 'https://github.com': Invalid argument
Error: bash: /dev/tty: No such device or address
error: failed to execute prompt script (exit code 1)
fatal: could not read Username for 'https://github.com': Invalid argument
at ChildProcess.<anonymous> (E:\git\node_modules\hexo-util\lib\spawn.js:37:1
7)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at ChildProcess.cp.emit (E:\git\node_modules\cross-spawn\lib\enoent.js:40:29
)
at maybeClose (internal/child_process.js:850:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:215:5)

jojo's blog

我的config.yml这样配置的

1
2
3
4
deploy:
type: git
repo: https://github.com/jasmine-na/jasmine-na.github.io.git
branch: master

原因:是在windows下的cmd.exe环境的缘故

jojo's blog

jojo's blog

然后我把命令切换到Git Bash 环境中运行,有提示输入github的用户名和密码,输入 hexo -d 成功上传了。