contribute-now 0.4.1 → 0.5.0-dev.914e35d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +39 -12
- package/dist/index.js +850 -227
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -204,17 +204,19 @@ Checks include:
|
|
|
204
204
|
|
|
205
205
|
### `contrib log`
|
|
206
206
|
|
|
207
|
-
Show a colorized, workflow-aware commit log
|
|
207
|
+
Show a colorized, workflow-aware commit log. By default it shows only **local unpushed commits** — the changes you've made since the last push (or since branching off the base branch). Use flags to switch between different views.
|
|
208
208
|
|
|
209
209
|
```bash
|
|
210
|
-
contrib log #
|
|
211
|
-
contrib log
|
|
212
|
-
contrib log --
|
|
213
|
-
contrib log --
|
|
210
|
+
contrib log # local unpushed commits (default)
|
|
211
|
+
contrib log --remote # commits on remote not yet pulled
|
|
212
|
+
contrib log --full # full history for the current branch
|
|
213
|
+
contrib log --all # commits across all branches
|
|
214
|
+
contrib log -n 50 # change the commit limit (default: 20)
|
|
214
215
|
contrib log -b feature/x # log for a specific branch
|
|
216
|
+
contrib log --no-graph # flat view without graph lines
|
|
215
217
|
```
|
|
216
218
|
|
|
217
|
-
|
|
219
|
+
When no upstream tracking is set (branch hasn't been pushed yet), the command automatically compares against the base branch from your config (e.g., `origin/dev`). Protected branches are highlighted, and the current branch is color-coded for quick orientation.
|
|
218
220
|
|
|
219
221
|
---
|
|
220
222
|
|
|
@@ -352,15 +354,40 @@ bun test # run tests
|
|
|
352
354
|
bun run lint # check code quality
|
|
353
355
|
```
|
|
354
356
|
|
|
355
|
-
## Contributing
|
|
357
|
+
## 🎯 Contributing
|
|
356
358
|
|
|
357
|
-
Contributions are welcome
|
|
359
|
+
Contributions are welcome, create a pull request to this repo and I will review your code. Please consider to submit your pull request to the `dev` branch. Thank you!
|
|
358
360
|
|
|
359
|
-
|
|
361
|
+
Read the project's [contributing guide](./CONTRIBUTING.md) for more info.
|
|
360
362
|
|
|
361
|
-
|
|
363
|
+
## 🐛 Issues
|
|
362
364
|
|
|
363
|
-
|
|
365
|
+
Please report any issues and bugs by [creating a new issue here](https://github.com/warengonzaga/contribute-now/issues/new/choose), also make sure you're reporting an issue that doesn't exist. Any help to improve the project would be appreciated. Thanks! 🙏✨
|
|
366
|
+
|
|
367
|
+
## 🙏 Sponsor
|
|
368
|
+
|
|
369
|
+
Like this project? **Leave a star**! ⭐⭐⭐⭐⭐
|
|
370
|
+
|
|
371
|
+
Want to support my work and get some perks? [Become a sponsor](https://github.com/sponsors/warengonzaga)! 💖
|
|
372
|
+
|
|
373
|
+
Or, you just love what I do? [Buy me a coffee](https://buymeacoffee.com/warengonzaga)! ☕
|
|
374
|
+
|
|
375
|
+
Recognized my open-source contributions? [Nominate me](https://stars.github.com/nominate) as GitHub Star! 💫
|
|
364
376
|
|
|
365
|
-
|
|
377
|
+
## 📋 Code of Conduct
|
|
378
|
+
|
|
379
|
+
Read the project's [code of conduct](./CODE_OF_CONDUCT.md).
|
|
380
|
+
|
|
381
|
+
## 📃 License
|
|
382
|
+
|
|
383
|
+
This project is licensed under [GNU General Public License v3.0](https://opensource.org/licenses/GPL-3.0).
|
|
384
|
+
|
|
385
|
+
## 📝 Author
|
|
386
|
+
|
|
387
|
+
This project is created by **[Waren Gonzaga](https://github.com/warengonzaga)**, with the help of awesome [contributors](https://github.com/warengonzaga/contribute-now/graphs/contributors).
|
|
388
|
+
|
|
389
|
+
[](https://github.com/warengonzaga/contribute-now/graphs/contributors)
|
|
390
|
+
|
|
391
|
+
---
|
|
366
392
|
|
|
393
|
+
💻💖☕ by [Waren Gonzaga](https://warengonzaga.com) & [YHWH](https://www.youtube.com/watch?v=VOZbswniA-g) 🙏 — Without *Him*, none of this exists, *even me*.
|