我有两行a和b,我认为垂直两行之间的距离太小.
我想让距离更大,我知道我可以通过col-md-offset来改变水平距离 - *.但是如何改变垂直距离?
<div class="row" id="a">
<img> ... </img>
<div>
<div class="row" id="b">
<button>..</button>
<div>
Run Code Online (Sandbox Code Playgroud)
现在我的解决方案是插入h1的标签,我认为它不优雅.
<div class="row" id="a">
<img> ... </img>
<div>
<h1></h1>
<div class="row" id="b">
<button>..</button>
<div>
Run Code Online (Sandbox Code Playgroud)
它有更优雅的解决方案吗?
我使用zsh和oh-my-zsh.当我使用github并想使用密钥上传时.
我总能找到
#git push
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
Run Code Online (Sandbox Code Playgroud)
因为我还没有添加密钥
#ssh-add -l
Could not open a connection to your authentication agent.
Run Code Online (Sandbox Code Playgroud)
所以我必须启动ssh-agent并在我想要推或拉时添加密钥
#ssh-agent zsh
#ssh-add ~/.ssh/id_rsa
Run Code Online (Sandbox Code Playgroud)
如何在脚本中添加这些命令,所以我不需要输入命令?
Capistrano 配置文件有配置
设置 :scm,:git 和 :repo_url 和 :branch
我可以在没有 scm 的情况下使用 capistrano 进行部署吗?
set :scm, :none
set :repository, "."
Run Code Online (Sandbox Code Playgroud)
Capistrano 部署中的 scm 配置有什么好处?
capistrano ×1
capistrano3 ×1
css ×1
debian ×1
git ×1
html ×1
linux ×1
oh-my-zsh ×1
ruby ×1
zsh ×1