git pull 使用法

git pull 使用法

用 rebase 尽量减少多余的 merge commit

    git pull --rebase

pull 特定分支例

    git pull --rebase origin a-black-and-thick-branch

rebase 冲突了, 又不喜欢一步一步的 git rebase 怎么办?

    git rebase --abort
    git reset --hard HEAD
    git pull
    git status

git merge 使用法

保证清晰的路线图, 必须 no fast forward, 例如

    git merge --no-ff a-tiny-and-soft-branch

你可能感兴趣的:(git,merge)