Git配置及推送
2019-12-04 本文已影响0人
李寻欢_
step1 git init
step2 git add .
step3 git commit -m "初次提交等文本信息"
step4 git remote add origin http://...(项目地址)
step5 git pull origin master(先拉取)
step6 git push origin master(再提交)
step1 git init
step2 git add .
step3 git commit -m "初次提交等文本信息"
step4 git remote add origin http://...(项目地址)
step5 git pull origin master(先拉取)
step6 git push origin master(再提交)