Git global setup: git config --global user.name "monlone" git config --global user.email "monlone@timesweb.cn" Create Repository mkdir mobileframework cd mobileframework git init touch README git add README git commit -m 'first commit' git remote add origin git@timesweb.cn:ycg/timesframework.git //ssh(若为https,https://git.timesweb.cn/ycg/timesframework.git) git push -u origin master Existing Git Repo? cd existing_git_repo git remote add origin git@git.timesweb.cn:ycg/timesframework.git//ssh(若为https,https://git.timesweb.cn/ycg/timesframework.git) git push -u origin master

分类: web

标签: