Git初始化

2016-03-06  本文已影响33人  jsnow0613

git使用步骤

  1. 下载git
  2. git config --global user.name "Your name"
    git config --global user.email "Your email"
  3. 在需要同步的根目录下git init

远程仓库

  1. 创建SSH Key
    ssh-keygen -t rsa -C "youremail@example.com"
  2. 获取公钥,放进gitlab服务器
  3. 关联git服务器:git remote add origin git@github.com:michaelliao/learngit.git
  4. 推送到远程库:git push -u origin master,首次使用时 -u是为了关联远程库和本地的master
上一篇下一篇

猜你喜欢

热点阅读