git首次提交

git init
git add .
git config user.name 'xxx'
git config user.email '[email protected]'
git pull https://git.oschina.net/xxx/maple.git master
git remote add origin https://git.oschina.net/xxx/maple.git
git commit -am 'init'
git push -u origin master

你可能感兴趣的:(git首次提交)