通用:创建仓库,下载通过远程的仓库到本地,然后上传本地仓库到远程仓库
分支操作
1.查看本地分支
git branch
2.查看所有分支
git branch -a
3.查看所有分支及对应版本信息
git branch -va
#!/bin/bash
sudo rm -rf .vuepress/dist
git init
git remote rm origin
git remote add origin 'https://gitee.com/china_lofty/cola'
git config --global user.email "1431075018@qq.com"
git config --global user.name "cola"
git pull remote master
git add .
git commit -m update
git push origin master --force