Thank you for the video! What happens if you have pushed the intermediate commits to github? can you rebase then?
@matk22839 ай бұрын
Excellent on interactive rebasing. gratitude to you for posting this. Mathew. K from Colorado
@aderibigbeomisore7103 Жыл бұрын
Hi, In lesson 16, you said to caary out the git rebase, you had to move out of the current branch to the master branch, before typing the command #git rebase feature_branch. in this video in 5:59, you carried out the rebase inside the branch by running #git rebase -i master_branch . I thought we rebase the branch to the master when you are in the master? Kindly help me understand?
@theerayutattajak62762 жыл бұрын
This is very useful, thanks so much.
@piyushnaithani76892 жыл бұрын
Awesome video😄
@balans8510 Жыл бұрын
If Two users works in same local branch First user - Did 1 commit Second user - did 3 commits Second user try to squash those last 3 commits into 1 commit - Successfully happening Then First user takes the same branch for work, then the branch get splitted into 3 commits and also the squash commit (total 4 commits) and also show one more commit like (first user merge those things in this branch) Is there any solution for this?