mirror of
https://github.com/RGBCube/nu_scripts
synced 2025-08-01 22:57:46 +00:00

This PR is part of porting all old scripts #221 and includes a set of small modules: - `math` - `parsing` - `git`
14 lines
No EOL
424 B
Markdown
14 lines
No EOL
424 B
Markdown
# Git Scripts
|
|
|
|
### Definition
|
|
|
|
These scripts should be used to demonstrate how combine the power of nushell with git commands.
|
|
|
|
### Aliases
|
|
If you find some of these scripts useful you can add them as aliases in your git config file.
|
|
|
|
For instance you can create a nushell script in your computer and define in your git config file an alias that call that script:
|
|
```
|
|
[alias]
|
|
bcl = !nu \"D:\\Tools\\gitalias_bcl.nu\"
|
|
``` |