cd 进入项目目录
git init 初始化
git remote add origin git@github.com:xxxx 关联
git add .
git commit -m "first"
git pull origin master --allow-unrelated-histories 第一次要加上<remote> <branch>
git push -u origin master 第一次push加上 -u 自动关联
cd 进入项目目录
git init 初始化
git remote add origin git@github.com:xxxx 关联
git add .
git commit -m "first"
git pull origin master --allow-unrelated-histories 第一次要加上<remote> <branch>
git push -u origin master 第一次push加上 -u 自动关联