【20160119】貌美的bootstrap模板和git安装

本文指导您如何在本地计算机上安装Git,并通过SSH密钥实现与GitHub的无缝连接,包括创建密钥、验证密钥指纹、添加密钥到GitHub账号、以及基本的Git操作如初始化仓库、克隆远程仓库、提交和推送代码。
摘要由CSDN通过智能技术生成

安装 git

1、在官网(http://git-scm.com/downloads)下载os版本,解压安装。也可以使用brew安装。

2、添加sshkey

  • 检查SSH key

    cd ~/.ssh
  • 备份已有的key,(如果有的话)

    mkdir key_backup
    
    mv id_rsa* key_backup
  • 生成SSH key

    $ ssh-keygen -t rsa -C your email
    
    Generating public/private rsa key pair.
    
    Enter file in which to save the key (/Users/username/.ssh/id_rsa):
    
    Enter passphrase (empty for no passphrase):
    
    Enter same passphrase again:
    
    Your identification has been saved in yes.
    
    Your public key has been saved in id_rsa.pub.
    
    The key fingerprint is:
    SHA256:fCaDnNajwhFX6ypzvqLMQyJKSMiEo2Tl9/hgEb2WABo your mail
    The key's randomart image is:
    +---[RSA 2048]----+
    |.E.o... .        |
    |o++  ..o .       |
    |Bo ..oo +        |
    |oo  .++X         |
    |o   .+*.S o      |
    |+....ooo *       |
    |+o  = +.         |
    |.o. .*           |
    |  +o .o.         |
    +----[SHA256]-----+
  • 将SSH key添加到GitHub
    登录到GitHub页面,Account Settings里面SSH Public Keys,Add another key 将生成的key(id_rsa.pub文件)内容copy到输入框中,save。

  • 测试链接

    $ ssh git@github.com
    The authenticity of host 'github.com (207.97.227.239)' can't be established.
    RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
    Are you sure you want to continue connecting (yes/no)? yes
    PTY allocation request failed on channel 0
    Hi jiang-bo! You've successfully authenticated, but GitHub does not provide shell access.
    Connection to github.com closed.  

    别担心,这是正常情况。

  • 设置个人信息

    $ git config --global user.name "username"
    $ git config --global user.email "your mail"

使用 git

初始化:

$ mkdir foldername
$ cd foldername
$ git init
Initialized empty Git repository in /Users/xxx/.ssh/foldername/.git/

拉版本库:

$ git clone git@github.com:oisy/ideaBootstrapTemplate.git
Cloning into 'ideaBootstrapTemplate'...
Warning: Permanently added the RSA host key for IP address '192.30.252.129' to the list of known hosts.
remote: Counting objects: 3, done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Receiving objects: 100% (3/3), done.
Checking connectivity... done.

然后提交推送

$git add .
$git commit -m "blabla"
$git push

好了,装git就是为了把这个貌美的前端模板传上去。

关于这个模板

不知道是哪个国家的程序员开发,模板上的文字都看不懂。但是功能很全,有单页面的简洁版,有多页面丰富版,有动画效果的页面滚动,有shop模式,有多种列表,多种控件,十分可爱。下载地址:

http://github.com/oisy/ideaBootstrapTemplate.git

截图感受一下:

默认首页,还有更多html5的扁平化页面:

默认首页

多种现成的页面可用:

页面

丰富可爱的图标:
icon

令人激动的组件:

组件

商城列表:

shop

附带记录bash command,删除整个目录和内容:

$cd xxx(subdir)
$rm -rf -- dir
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值