Git: How to reset after merging?

后端 未结 3 1133
予麋鹿
予麋鹿 2021-02-08 07:25

I\'ve merged a master branch from a friend\'s repository into my working directory into branch_a using:

git pull my_friend master

I\'ve discove

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-08 08:01

    does pull command commit?

    Yes, it does. Pull is a wrapper over fetch and merge. If you want to see other's changes before merging, you can just fetch

提交回复
热议问题