Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sheerun/git-squash

Locally squash commits on a branch without resolving any conflicts (a'la squash and merge)
https://github.com/sheerun/git-squash

git github gitlab squash-and-merge

Last synced: about 2 months ago
JSON representation

Locally squash commits on a branch without resolving any conflicts (a'la squash and merge)

Awesome Lists containing this project

README

        

# git squash [![Maintenance](https://img.shields.io/maintenance/yes/2021.svg?maxAge=2592000)]()

Locally squash commits on a branch, without needing to resolve any conflicts 🧈

It works just like GitHub's "Squash and merge" or GitLab's "Squash commits".

## Installation

With [Homebrew](https://brew.sh/) on MacOS and Linux:

```
brew install sheerun/git-squash/git-squash
```

With `curl` on MacOS and Linux, including Windows Subsystem for Linux:

```
curl https://raw.githubusercontent.com/sheerun/git-squash/master/git-squash > /usr/local/bin/git-squash && chmod a+x /usr/local/bin/git-squash
```

## Usage

```sh
# This tool requires that target branch is mergable to current one
# The easiest way to ensure it is to merge it and resolve any conflicts
git merge master
# Squash all changes on current branch that happened since master branch
git squash master
```

## License

MIT