git 常用操作
Posted renyangli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 常用操作相关的知识,希望对你有一定的参考价值。
git
如何查看git项目在哪个路径下
git remote -v
//查看当前仓库执行过的操作的日志
git reflog
//初始化git
git init
//合并多个(2个或2个以上)commit
git rebase -i HEAD~4
pick b3d29ba tmp
fixup dd3631b test12
pick 84dd3e3 test1
fixup 331288a test2
//放弃rebase操作
git rebase —abort
https://github.com/renyangli1/Hello-world
以上是关于git 常用操作的主要内容,如果未能解决你的问题,请参考以下文章