Delete a local branch and its upstream branch altogether.
Create a new branch based on the default branch (usually origin/main
).
Push a branch and set the upstream if not already set.
Does like a git merge origin/main
but helps you resolve the conflicting
commits one by one instead than having to solve them altogether like
git merge
.
Does like a git merge origin/main
but helps you resolve the conflicting
commits one by one instead than having to solve them altogether like
git merge
.
```bash git try-merge
#
git try-merge
until your branch is#
git rebase
would do.)```
There is no real equivalent purely with Git's CLI. This is the closest:
```bash git fetch git merge origin/main
```
bash
cargo install git-tools --bin git-try-merge
Create a new branch based on the default branch (usually origin/main
).
```bash git fork new-branch
```
More or less equivalent to:
bash
git checkout main
git pull --ff-only
git checkout -b new-branch
The local branch main will not be updated. In fact, you don't even need a local branch main. The exact equivalent with Git would be more something like this:
```bash git fetch origin main
git branch -f new-branch origin/main git checkout new-branch ```
bash
cargo install git-tools --bin git-fork
Push a branch and set the upstream if not already set.
bash
git push2
This is the equivalent of:
```bash git push
git push --set-upstream origin new-branch ```
bash
cargo install git-tools --bin git-push2
Delete a local branch and its upstream branch altogether.
bash
git delete new-branch
This is the equivalent of:
git branch -d new-branch
git push origin :new-branch
bash
cargo install git-tools --bin git-delete