其实鼠鼠一直不知道怎么搞这个…

  1. 首先init仓库

    1
    git init
  2. 将本地的内容提交

    1
    2
    git add .
    git commit -m "msg"
  3. 将远端设置为目标仓库并提交

    1
    2
    3
    git remote add origin [email protected]:liuyaoli12345/train_ticket.git
    git branch -M main
    git push -u origin main