码迷,mamicode.com
首页 > 其他好文 > 详细

git 创建项目

时间:2018-08-23 19:25:40      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:legend   mkdir   commit   epo   pre   git push   glob   git init   pos   

Git global setup:
git config --global user.name "hello"
git config --global user.email "hello@domain"
Create Repository
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
Existing Git Repo?
cd existing_git_repo
git remote add origin http://domain/projectname.git
git push -u origin master

git 创建项目

标签:legend   mkdir   commit   epo   pre   git push   glob   git init   pos   

原文地址:https://www.cnblogs.com/zhonghuahero/p/9525300.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!