kickflip 1.9.4
See the version list below for details.
dotnet tool install --global kickflip --version 1.9.4
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local kickflip --version 1.9.4
#tool dotnet:?package=kickflip&version=1.9.4
nuke :add-package kickflip --version 1.9.4
Kickflip
So you got some GIT changes you want to get onto the server? No worries! You can kick those git changes and flip them over to that remote server!
Use Cases
Maybe you have a scripts folder that maintain in git but are deploying manually. Kickflip can help automate determining what files have change and deploy them to the remote server.
Using kickflip
Install of the tool using the following dotnet CLI command:
dotnet tool install kickflip
If you are using it on your local development or would just like to have it installed once globally, use the following dotnet CLI command:
dotnet tool install --global kickflip
Once installed you can run the tool from the command line.
Default which uses mode = Tags (e.g GitHub Releases)
kickflip deploy --hostname <ftp-hostname> --port <ftp-port (24)> --username <ftp-username> --password <ftp-password>
Or Tags
kickflip deploy --mode Tags --hostname <ftp-hostname> --port <ftp-port (24)> --username <ftp-username> --password <ftp-password>
Github Actions
Github Actions actions/checkout@v3
by default performs a shallow clone of the repo. In order for kickflip to work out all the changes it requires that a full clone be made. This can be achieve by:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # avoid shallow clone so kickflip can do its work.
If scripting for running in a CI build where global impact from installing a tool is undesirable, you can localize the tool installation:
- name: Install kickflip
run: dotnet tool install --tool-path ./tools kickflip
- name: Use kickflip
run: ./tools/kickflip <options>
Commandline reference
At any time the help can be printed with --help
. This works on the sub-commands too.
kickflip --help
Or on a sub-command
kickflip deploy --help
Development
Kickflip uses dotnet/Nerdbank.GitVersioning to handle semantic versioning and branching to for releases. To prepare a new release the following command must be run.
nbgv prepare-release
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
This package has no dependencies.
Version | Downloads | Last updated |
---|---|---|
2.0.10 | 707 | 7/1/2024 |
2.0.9-alpha | 112 | 6/28/2024 |
1.9.4 | 145 | 6/11/2024 |
1.8.4 | 145 | 6/4/2024 |
1.7.4 | 2,220 | 12/14/2022 |
1.6.4 | 914 | 11/15/2022 |
1.5.4 | 1,282 | 10/4/2022 |
1.4.9 | 988 | 10/3/2022 |
1.3.9 | 1,036 | 9/27/2022 |
1.3.8 | 915 | 9/27/2022 |
1.3.7 | 1,083 | 9/26/2022 |
1.3.6 | 1,047 | 9/26/2022 |
1.3.5 | 890 | 9/26/2022 |
1.2.7 | 1,044 | 9/26/2022 |
1.1.9 | 1,089 | 9/23/2022 |
1.1.4-alpha | 886 | 9/23/2022 |
1.1.3-alpha | 822 | 9/23/2022 |
1.0.5-beta | 1,025 | 9/22/2022 |
1.0.4-beta | 735 | 9/22/2022 |
1.0.3-beta | 850 | 9/22/2022 |