标签:
通过 git init 命令把这个目录变为git管理仓库
第一步,用命令 git add
告诉Git,把文件添加到仓库:
第二步,用命令git commit -m “ 记录信息”
告诉Git,把文件提交到仓库:
会提示如下信息:
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account‘s default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got ‘root@hlf.(none)‘)
这个是提示你 配置用户名字和邮箱。复制上面提示的代码
git config --global user.email "544828662@qq.com"
git config --global user.name "itaotao"
然后再去commit才会成功。
git pull 更新您的本地分支
要克隆一个仓库,首先必须知道仓库的地址,然后使用 git clone
命令克隆。
Git支持多种协议,包括https
,但通过ssh
支持的原生git
协议速度最快。
创建一个 dev 分支,然后切换到 dev 分支
git checkout -b dev
删除分支
git branch -d dev
查看分支:git branch
创建分支:git branch <name>
切换分支:git checkout <name>
创建+切换分支:git checkout -b <name>
合并某分支到当前分支:git merge <name>
删除分支:git branch -d <name>
标签:
原文地址:http://www.cnblogs.com/helinfeng/p/4244857.html