cd /www/wwwroot/hearing-aids.com.cn 
git config --system user.name "audisound"
git config --system user.email "pengcan@jinghao.info"
git remote rm origin
git init
git remote add origin git@github.com:audisound/hearing-aids.com.cn.git
git fetch origin master  
git fetch origin dev  
git log -p master..origin/master  
git log -p dev..origin/dev   
git merge origin/master 
git merge origin/dev 
git add .
git commit -a -m "init project 2020"
git push -u origin master
Share.