新的仓库

  1. git clone git@xxx.git
  2. cd yixuanbao_front
  3. touch README.md
  4. git add README.md
  5. git commit -m "add README"
  6. git push -u origin master

存在的文件夹

  1. cd existing_folder
  2. git init
  3. git remote add origin git@git.xxx.git
  4. git add .
  5. git commit -m "Initial commit"
  6. git push -u origin master

存在项目

  1. cd existing_repo
  2. git remote rename origin old-origin
  3. git remote add origin git@git.xxx.git # 迁移地址
  4. git push -u origin --all
  5. git push -u origin --tags