安装git管理工具后
# 配置个人信息
git config --global user.name "cnsonkwl"
git config --global user.email "[email protected]"
进入vscode
- 资源管理器中新建或载入文件夹
- vscode->源代码管理,初始化代码库
# 多个代码库,需手动初始化 cd dir git init
- 进入目录的终端,设置远程库地址
git remote add origin https://gitee.com/cnsonkwl/my.git git push -u origin master
git config --global http.proxy=http://
git config --global https.proxy=http://
# 生成密钥
ssh-keygen -t rsa -C "[email protected]"
# 查看密钥
cat ~/.ssh/id_rsa.push
#ssh-rsa AAAA....
gitee仓库中,新增公钥
ssh -T [email protected]
# 配置个人信息
git config --global user.name "cnsonkwl"
git config --global user.email "[email protected]"
# 初始化本地库
# e:/mynode 为新增本地库
e:/mynode/~ git init
目录下多了一个.git的目录
git remote add origin https://gitee.com/cnsonkwl/mynode.git
#或(需配置1.4)
git remote add origin [email protected]:cnsonkwl/mynode.git
git pull origin master --allow-unrelated-histories
# --allow-unrelated-histories
# 解决git2.9版本之后报错refusing to merge unrelated histories
# 新增文件
git add test.md
git commit -m "msg"
git push origin master