git安装及初始设置

安装

  1. 进入git官网下载安装包,一路next安装

设置

  1. 设置user.name和user.email作为标识

    $ git config --global user.name "xxx"
    $ git config --global user.email "xxx"
    
  2. 添加远程仓库

    • 直接clone:

      $ git clone git://github.com/paulboone/ticgit.git #此时远程仓库名默认为origin
      
    • git remote add [shortname] [url]:

      $ git remote add pb git://github.com/paulboone/ticgit.git
      

常见问题

  1. git bash中左键选中自动跳出^C

    打开了查词软件,比如有道词典。

posted @ 2018-09-11 09:34  MrZJ  阅读(204)  评论(0编辑  收藏  举报