Git指令总结

Posted wuyepeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git指令总结相关的知识,希望对你有一定的参考价值。

常用指令如下:

git help
git init //初始化本地代码仓库
git clone <仓库url> //克隆仓库内源码
git checkout <branch> //切换到指定分支
git submodule init //初始化子模块
git submodule update //同步子模块代码
git branch //查看当前分支和本地全部分支
git branch <branchname> //创建新分支
git branch -D <branchname> //删除指定分支
git status //查看当前状态
git add . //将当前目录下全部修改加入提交队列
git add <filename>//添加指定文件到提交队列
git add --all //将当前目录下全部修改(包含删除动作)加入提交队列
git commit -m "commit log" //将提交队列内的变更提交到本地仓库
git commit -m ‘commit log‘ //功能同上,日志可换行
git push // 将本地仓库变更提交到主仓库和他人共享
git pull --rebase //同步本地仓库为最新,俗话把最新代码拉下来
git merge <branchname> //将“branchname”代码合并到当前所在分支
git fetch //同步
git diff //查看当前全部未add的文件变动
git diff <filename> //查看指定文件文件(未add)的变更
git tag //查看全部tag

  

以上是关于Git指令总结的主要内容,如果未能解决你的问题,请参考以下文章

总结思考git常用指令总结

Git常用指令总结

Git指令总结

Git 提交代码步骤总结

Git branch 和fetch 指令总结:分支查看和远程分支同步

Android 常用git指令记录总结