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

git检出与创建的过程

时间:2016-03-11 12:11:00      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

Command line instructions

Git global setup
git config --global user.name "bingo"
git config --global user.email "xxxxx@126.com"
Create a new repository
git clone http://192.168.20.246/xxx/dm.git
cd dm
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
Existing folder or Git repository
cd existing_folder
git init
git remote add origin http://192.168.20.246/xxx/dm.git
git add .
git commit
git push -u origin master

git检出与创建的过程

标签:

原文地址:http://www.cnblogs.com/zhengbing/p/5264735.html

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