The following untracked working tree files would be overwritten by merge
git add *
git stash
git pull
这将跟踪所有文件,删除这些文件的所有本地更改,然后从服务器获取文件。
git log 查看commit的历史
git show <commit-hash-id>查看某次commit的修改内容
git log -p <filename>查看某个文件的修改历史
$ git checkout -b newBrach origin/master
git branch --set-upstream develop/qidian origin/develop/qidian