git config:配置相关信息
git clone 复制仓库
git init 初始化仓库
git add 添加更新内容到索引中
git diff 比较内容
git status 获取当前项目状况
git commit 提交
git branch 创建分支(相关)
git checkout 切换分支
git merge 合并分支
git reset 恢复版本
git log 查看日志
Git初始化:
$ git config --global user.name “scott chacon”
$ git config --global user.email "schacon@mail.com* (一般配置方法:git comfig --global <配置名称> <配置的值>)
$ cd ~/.gitconfig
clone一个仓库:
$ cd /home/shiyanlou/
$ git clone https://github.com/lshiyanlou/hello-mr.liu (复制一个仓库)
$ cd hello-mr.liu/
初始化仓库:
$ cd /home/shiyanlou/
$ mkdir project
$ cd project(进入代码目录)
所有评论(0)