github服务

github服务

git config --global user.name 'xxx'
git config --global user.email '[email protected]'
cd /root/lanmp
#git init
#touch README.md
git add README.md  
git commit -m 'init' #每次更新的注释信息
git remote add origin 'https://github.com/xxx/lamp.git'
git push -u origin master #更新上传


你可能感兴趣的:(github服务)