标签:legend mkdir commit epo pre git push glob git init pos
git config --global user.name "hello" git config --global user.email "hello@domain"
mkdir projectname cd projectname git init touch README git add README git commit -m ‘first commit‘ git remote add origin http://domain/projectname.git git push -u origin master
cd existing_git_repo git remote add origin http://domain/projectname.git git push -u origin master
git 创建项目
原文地址:https://www.cnblogs.com/zhonghuahero/p/9525300.html