以前都是在github上面整整,基本的git clone就足够了,git push, git pull一直没有深入学习。
现在工作中需要用到,所以把最近遇到的一些总结起来了
git checkout develop #切换到develop分支
git push -u --all #这样可以把本地的分支与远程的分支关联起来,否则git pull的时候会需要你git push --set-upstream之类的。
git merge --no-ff develop -m "Merge from develop branch" #从develop 分支合并到当前分支
git log --pretty=oneline --graph
时间: 2024-11-05 18:56:59