赞
踩
1、 请自定义文件的3个版本提交给git管理,并且最终可以提交到第二个版本,写出其过程命令。命令最好以截图形式提交。
git status
git add .
git commit -m "my first commit" git status
git add .
git commit -m "my second commit"
git status
git add .
git commit -m "my third commit"
git status git reset --hard HEAD^
或者切换第二个版本
git reflog
git reset --hard 3d08d10
2、 请使用Git模拟一个冲突,并且使用Git解决,将编写的命令作为答案即可。命令最好以截图形式提交。
$ git checkout test
$ git add .
$ git status
$ git commit -m"test :bug fix"
$ git checkout master
$ git merge test
$ git add .
$ git commit -m"master v3"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。