GitHub之git bash命令-1

  • 获取用户密匙
    $ ssh-keygen-t rsa -C "[email protected]"
  • 验证是否连接到github
    $ ssh -T [email protected]"
  • 配置用户参数
    -- 用户名
    $ git config --global user.name "your name"
    -- 用户邮箱
    $ git config --global user.email "[email protected]"
  • git bash定位
    $ cd /路径(C/D/E.....)
  • 克隆仓库到本地路径
    $ git clone https://github.com/yourName/yourRepo.git/
  • 查看所定位的文件夹中的文件
    $ ls
  • 提出更改(添加到暂存区)
    $ git add
    $ git add *
  • 提交改动(本地HEAD文件中)
    $ git commit -m "备注"
  • 推送到远程仓库(提交到远程服务端)
    $ git push origin master

你可能感兴趣的:(GitHub之git bash命令-1)