1)删除提交记录
git reset --hard "commit ID"
e.g git reset --hard "0604b21f7f6e0c7abb8d73d56bfdb6e2d11836cd"
git push origin HEAD --force
※前提是对操作的repo目录,有force push权限。
这样会彻底从commit history删除,而且对文件所做的修改也删除。
revert只是回滚对文件所做的修改,但是git operation都会在commit history里删除。
2)git stash用法
git stash save "work in progress for too feature" #保存当前工作进程,并命名加以区分
git diff HEAD #查看当前工作区和本地repo的区别,并无区别才是对的,因为工作区已经被暂存
git stash list #查看当前所有stash
git stash apply --index "stash@{1}"
git diff HEAD #查看当前工作区和本地repo的区别,有区别才是对的,应用了工作区的修改
pc_user_name@CN00207328 MINGW64 /c/repo/test_repo (master)
echo "#This is test_repo" >> README.md
git remote add origin https://github.com/GITHUBSIGNUM/test_repo.git
pc_user_name@CN00207328 MINGW64 /c/repo/test_repo (master)
hunjng@CN00207328 MINGW64 /c/repo/test_repo (master)
$ git remote add origin https://github.com/GITHUBSIGNUM/test_repo.git
pc_user_name@CN00207328 MINGW64 /c/repo/test_repo (master)
fatal: repository 'https://github.com/GITHUBSIGNUM/test_repo.git/' not found
5)如何只更新一个文件
git fetch
git checkout origin/master -- training-basic/src/main/somefile.java
6)修改git用户
编辑repo下的.gitconfig文件或者
git config --global user.name "GraceJiang"
git config --global user.email jianghuanjunok@163.com
http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html