Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add git-project #33

Merged
merged 3 commits into from
Oct 2, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'master' into master
  • Loading branch information
stevemao authored Oct 2, 2021
commit d24c53f7016a33a97a69a10a9b4f7a354ea8a5e0
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ Inspired by the [awesome](https://github.com/sindresorhus/awesome) list thing.
- [git revise](#git-revise)
- [filter-repo](#filter-repo)
- [git-project](#git-project)
- [git-branchcut](#git-branchcut)


## [git-extras](https://github.com/tj/git-extras)
Expand Down Expand Up @@ -1903,6 +1904,22 @@ Project: shoppinglist
4| ✅ love
```

## [git-branchcut](https://github.com/dlsrb6342/git-branchcut)
### Delete branches with string pattern
```
$ git branchcut execute -p "feature/*"
Switched to branch 'main'
Deleted branch feature/test (was 257725f).
Deleted branch feature/impl (was 8120c0b).
```

### Delete branches with day-offset
```
$ git branchcut execute -o 7
Switched to branch 'main'
Deleted branch bugfix/test (was e2afad6).
Deleted branch too-old-branch (was 1d3f82d).
```

## License

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.