Tag: git
Git rebase
Date: 1/14/2024Tags:gitThe journal entry discusses the use of git rebase to merge two branches with new commits, making the commit history linear and easier to read.
Git rebase --continue
Date: 1/14/2024Tags:gitThe journal entry explains that when encountering conflicts during a Git rebase, using the command `git rebase --continue` is necessary to resolve the conflict and continue the rebase process.
Git remote commands
Date: 1/13/2024Tags:gitThe journal entry discusses a list of git commands for working with remote.
Git remote --update
Date: 1/13/2024Tags:gitThe journal entry explains that the Git command "git remote --update" is used to update all remote branches to match the remote repository, and the accompanying code is "git remote --update".
Git fetch and git pull
Date: 1/13/2024Tags:gitThe journal entry discusses the differences between `git fetch` and `git pull` and explains that `git pull` is a combination of `git fetch` and `git merge`.