1.拉取远程仓库分支
git init 初始化
git remote add origin http:***********.git
git fetch origin dev
2.gitee 配置 ssh公钥
ssh-keygen -t rsa -C “邮箱”
回车3下
cat ~/.ssh/id_rsa.pub
3.提交代码
git status ./
git add ./*
git commit -m “注释”
git push
1.拉取远程仓库分支
git init 初始化
git remote add origin http:***********.git
git fetch origin dev
2.gitee 配置 ssh公钥
ssh-keygen -t rsa -C “邮箱”
回车3下
cat ~/.ssh/id_rsa.pub
3.提交代码
git status ./
git add ./*
git commit -m “注释”
git push