You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

32 lines
952 B

<script lang="ts">
export let size: 'sm' | 'md' = 'md'
</script>
<div class="prose" class:text-sm={size === 'sm'}>
<p>
download binaries and add them to a directory from which they can be run
globally:
</p>
<p>
<a
href="https://github.com/DanConwayDev/ngit-cli/releases/download/v1.4.3/ngit-x86_64-unknown-linux-gnu.tar.gz"
class="btn btn-neutral"
class:btn-sm={size === 'sm'}>Linux</a
>
<a
href="https://github.com/DanConwayDev/ngit-cli/releases/download/v1.4.3/ngit-x86_64-apple-darwin.tar.gz"
class="btn btn-neutral"
class:btn-sm={size === 'sm'}>Mac</a
>
<a
href="https://github.com/DanConwayDev/ngit-cli/releases/download/v1.4.3/ngit-x86_64-pc-windows-msvc.zip"
class="btn btn-neutral"
class:btn-sm={size === 'sm'}>Windows</a
>
v1.4.3
</p>
<p>
alternatively, if you have cargo installed run<code>cargo install ngit</code
>
</p>
</div>