通用:创建仓库,下载通过远程的仓库到本地,然后上传本地仓库到远程仓库

分支操作

1.查看本地分支

  1. git branch

2.查看所有分支

  1. git branch -a

3.查看所有分支及对应版本信息

  1. git branch -va
  1. #!/bin/bash
  2. sudo rm -rf .vuepress/dist
  3. git init
  4. git remote rm origin
  5. git remote add origin 'https://gitee.com/china_lofty/cola'
  6. git config --global user.email "1431075018@qq.com"
  7. git config --global user.name "cola"
  8. git pull remote master
  9. git add .
  10. git commit -m update
  11. git push origin master --force

瓦雀