]摘要:
1. 如何将本地代码放在Git服务器的关联
2. VSCode 如何实现代码版本的管理
- 如何将本地代码放在Git服务器的关联
1.1 在用户主目录里找到.ssh目录,里面有id_rsa和id_rsa.pub两个文件,这两个就是SSH Key的秘钥对,id_rsa是私钥,不能泄露出去,id_rsa.pub是公钥。
1.11 .ssh 文件属于隐藏文件夹,可以在终端命令行里通过 $cd ~/.ssh //检查是否已经存在ssh
1.12 通过命令行设置显示隐藏文件 defaults write com.apple.Finder AppleShowAllFiles YES / killall Finder
1.13 通过设置文件夹属性设置隐藏文件可见
1.2 先进去GIT hub页面,进入Settings设置SSH and GPG keys,添加本机的id_rsa.pub 公匙。
1.3 通过命令行创建文件夹,并设置该文件夹为Git仓库
1.31 mkdir xxx
1.32 git init
1.4 添加远程仓库与删除远程仓库
$ git remote add origin git@github.com:michaelliao/learngit.git
$ git remote rm origin git@github.com:michaelliao/learngit.git
1.5 提交与克隆远程仓库
$ git push -u git @github.com:michaelliao/gitskills.git
$ git clone git@github.com:michaelliao/gitskills.git
noted: connect to host localhost port 22:Connection
GitHub给出的地址不止一个,还可以用https://github.com/michaelliao/gitskills.git
这样的地址。实际上,Git支持多种协议,默认的git://使用ssh,但也可以使用https等其他协议,但是在某些只开放http端口的公司内部就无法使用ssh协议而只能用https。