标签:
git init //生成.git 文件目录
$ git add *.c
$ git add README
$ git commit -m ‘初始化项目版本‘ //不用-m 参数,将自动调出编辑器,用于填写版本说明
以上命令将目录下以 .c 结尾及 README 文件提交到仓库中。
我们使用 git clone 从现有 Git 仓库中拷贝项目。
克隆仓库的命令格式为:
git clone <repo> //git@github.com:用户名/仓库名(ssh方式)
如果我们需要克隆到指定的目录,可以使用以下命令格式:
git clone <repo> <directory>
参数说明:
git status //可以查看没有跟踪的文件
git log
git branch
git push
细看:http://www.runoob.com/git/git-tutorial.html
标签:
原文地址:http://www.cnblogs.com/mialuz/p/5093162.html