Git 快速教程(远程)

显示隐藏文件
defaults write com.apple.finder AppleShowAllFiles -bool true
创建SSH Key
$ ssh-keygen -t rsa -C "[email protected]"

一路回车,可以在用户主目录里找到.ssh,里面有id_rsa和id_rsa.pub两个文件
id_rsa为私钥,不能泄露,id_rsa.pub是公钥,放在git服务器

从本地push到远程

关联一个远程库
$ git remote add origin gitPath/repo-name.git
关联后,使用命令
$ git push -u origin master 第一次推送master分支的所有内容
此后,每次本地提交后,只要有必要,就可以使用命令
$ git push origin master 推送最新的修改

在远程创建然后克隆

$ git clone https://github.com/yzgcode/gitskills.git
或者(推荐,但是某些公司只开放https端口无法使用)
$ git clone [email protected]:yzgcode/gitskills.git

git 支持多种协议 ,包括https,但通过ssh支持的原生git协议速度最快
使用https除了速度慢以外,还有个最大的麻烦是每次推送都必须输入口令
默认的git://使用ssh

你可能感兴趣的:(Git 快速教程(远程))