git步骤
2022-01-04 本文已影响0人
BI罗
$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"
git add .
git commit -m "first commit"
#可能需要ssh密钥
git remote add origin https://xxx.git
git push -u origin "master"
$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"
git add .
git commit -m "first commit"
#可能需要ssh密钥
git remote add origin https://xxx.git
git push -u origin "master"