git start
- git repository config
|
|
git 分支使用技巧
|
|
start description
- git config 说明
- remote add origin xxx 给本地仓库添加远程仓库 别名 origin
- git 添加远程仓库https ssh 方式是不同的
- ssh 需要通用 ssh key 的方式本地生成ssh key的公钥和私钥将公钥配置到gitserver。ex: github-setting-ssh key
- https 每次push pull 都需要用户密码 用credential.helper 方式保存1234#windowgit config credential.helper=wincred#osxgit config credential.helper=osxkeychain
— git 不同的登录方式ssh https 配置区别还是需要注意