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

Git创建仓库

时间:2017-03-16 22:55:48      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:git   创建仓库   

Git 使用 git init 命令来初始化一个 Git 仓库

git init

命令行输出

技术分享


在版本库中创建文件

echo demo1 > demo1.txt
echo readme > README
dir

命令行输出

技术分享


将文件纳入版本控制

git add demo1.txt
git add README
git commit -m "初始化项目版本"

命令行输出

技术分享


从现有 Git 仓库中拷贝项目

 git clone git@github.com:zhuzhufuzhuzhu/learngit

命令行输出

技术分享

技术分享

本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1907122

Git创建仓库

标签:git   创建仓库   

原文地址:http://suyanzhu.blog.51cto.com/8050189/1907122

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