https://github.com/zmanji/git-squash
A git command that lets you squash all commits in a feature branch into one commit.
https://github.com/zmanji/git-squash
git
Last synced: 2 months ago
JSON representation
A git command that lets you squash all commits in a feature branch into one commit.
- Host: GitHub
- URL: https://github.com/zmanji/git-squash
- Owner: zmanji
- License: mit
- Created: 2016-08-29T03:06:36.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2023-10-10T19:54:34.000Z (over 2 years ago)
- Last Synced: 2025-01-19T18:20:20.835Z (over 1 year ago)
- Topics: git
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# git-squash #
A git command that lets you squash all commits in a feature branch into one
commit.
## Usage ##
`git-squash `
## Build Instructions ##
Setup a virtual env with:
```
python3 -m venv venv
source ./venv/bin/activate
pip install -r requirements-dev.txt
pip-sync requirements-dev.txt requirements.txt
```
Then run
```
python setup.py bdist_pex
```
to get a binary.