git回滚上一版本
    在分支开发的时候,由于临时性的修复工作,导致一些未成熟的代码commit,需求撤销commit,恢复到上一版本:    使用git checkout . 无效,其只能在commit之前起作用;切换分支也会报错的。    需要使用git reset --hard 【commit_id 】    ps: commit_id可以当成版本号,唯一识别的id,查看提交记录,有长短之分均可(f3d86db4fe76c9d43a51acbeb74eff736ad3c34d或者f3d86db4)....
Git保存密码
git 保存密码 for windows 1.First, download git-credential-winstore and install it in your git bin directory.  首先下载git-credential-winstore.exe 然后移动到git的bin目录下 2.Next, make sure that the directory containing git.cmd is in your Path environment variable. The default directory for this is C:\Program Files (x86)\Git\cmd on a 64-bit system o
....
git简介--3--多分支开发注意事项
Git基本命令 git clone 克隆代码 git branch 分支 git status 当前分支及其操作记录 git diff 代码更改记录 git checkout 检出|切换分支 git add 添加新建文件 git commit -am "提示信息:提交所有修改" git push origin master|branch-new 推送远程分支多分支开发注意事项1.只改写自己负责的模块,轻易不同改写其他分支负责的代码 *2.养成习惯,每天提交分支 *3.分支push之前先要merge master *4.merge master之前,先要pull origin master ,实时
....
git简介--2--分支重命名
Git基本命令 git clone 克隆代码 git branch 分支 git status 当前分支及其操作记录 git diff 代码更改记录 git checkout 检出|切换分支 git add 添加新建文件 git commit -am "提示信息:提交所有修改" git push origin master|branch-new 推送远程分支在git的基本命令中是没有分支的重命名rename命令的,当然说的是对应的远程分支的删除;由于权限或者操作的不方便,没有办法直接使用命令rename远程Git分支,但是可以曲线救国的方式实现分支的重命名的效果
....
git简介--1--基本操作
Git基本命令 git clone 克隆代码 git branch 分支 git status 当前分支及其操作记录 git diff 代码更改记录 git checkout 检出|切换分支 git add 添加新建文件 git commit -am "提示信息:提交所有修改" git push origin master|branch-new 推送远程分支克隆源代码及新创建分支与合并 ##克隆源代码 git clone http://拉取|克隆源代码 ##新创建分支与合并 # create a new branch locally #新创建本地分支并切换至此分支下 #注:养成良好的习惯,任何操作之
....