1.查看上传日志
git log
2.查看本地修改的文件
git diff
3.查看本地修改的文件列表(这个实用)
git diff --name-only
4.查看本地文件状态,包括未跟踪的文件(没有add的新增文件)(实用)
git status
5.增加本地文件commit
git add
6.提交本地文件
git commit
7.上传提交的文件
git push
8.查看修改记录和该记录修改的文件(实用)
git whatchanged
9.返回到上一个版本
git reset HEAD^ --hard
10.返回到指定版本
git reset --hard xx版本号xxx
11.版本号查看
git reflog
git add imx8q/sepolicy/priv_app.te
git commit
git status
git config --global --list
git whatchanged
git show
//查看分支
git branch
//切换分支
git checkout AD-H8101
//创建本地分支
git checkout -b AD-H8103-DSI
git checkout -b AD-H8102
remotes/origin/AD-H8102
git remote -v
git pull git@192.168.10.244:/home/git/imx8_p9.0.0_2.1.0_auto_ga AD-H8102:AD-H8102 --force
git push git@192.168.10.244:/home/git/imx8_p9.0.0_2.1.0_auto_ga AD-H8102:AD-H8102
git push git@192.168.10.244:/home/git/imx8_p9.0.0_2.1.0_auto_ga AD-H8103:AD-H8103
git pull git@192.168.10.244:/home/git/imx8_p9.0.0_2.1.0_auto_ga AD-H8103:AD-H8103
git push git@192.168.10.244:/home/git/imx8_p9.0.0_2.1.0_auto_ga AD-H8103-DSI:AD-H8103-DSI
git pull git@192.168.10.244:/home/git/imx8_p9.0.0_2.1.0_auto_ga AD-H8103-DSI:AD-H8103-DSI
git pull https://github.com/sunxiaolin2016/imx8_2.git --force