git步骤

$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"


git add .
git commit -m "first commit"

#可能需要ssh密钥
git remote add origin https://xxx.git
git push -u origin "master"

你可能感兴趣的:(git步骤)