赞
踩
git config --global user.name <your-account-name> 配置用户名
git config --global user.email <your-email> 配置邮箱
git config --global core.editor vi 配置编辑器
git config --global ccolor.ui auto 配置颜色 让命令输出看起来更加醒目
git config --list 读取配置
git status 查看本地,本地仓库,缓存的文件修改状态
注:红色代表本地工作空间的文件修改;蓝色代表提交到本地仓库的文件
git pull 从其他的版本库将代码更新到本地
git add <filename> 添加某个修改文件 将当前更改或者新增的文件加入到Git的索引中,加入到索引中就表示进入了历史版本 这是提交之前需要进行的一步
git rm <filename> 相对来看即是从当前工作空间和索引中删除文件
git log 查看历史日志
git commit –amend对上一次的提交信息进行修改
git commit -a –amend 删除原来的change id,让系统自动生成一个新的change id
git diff HEAD^ HEAD 修改后进行对比
git checkout:(1)在不同的分支上进行切换 。例如: git checkout ;(2)还原代码的作用 。例如:git checkout app/model/user.rb’就会将user.rb文件从上一个已
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。