1.初始化git环境(用户和邮箱)
git config --system user.name "***"
git config --system user.email "***"
2.项目创建git与代码提交
git init
git add .
git commit -m "*****"
git push origin <branch分支名>
git pull --rebase origin <branch分支名>
3.从远程仓库拉取项目文件
git clone ******
git clone -b <branch分支名> ******
4.文件比对查看
git log
git status
git diff <file文件>
5.本地提交的版本回退
git reset --soft <commit号>
git reset --mixed <commit号>
git reset --hard <commit号>
6.远程仓库提交版本的撤销
git log
git reset --soft <commit号>
git log
git push origin <branch分支号> --force
7.将分支A上的commit内容合并到另一个分支B上
git checkout -b <branchB名称> <commit号1>
git rebase --onto <branchB名称> <commit号2>
|