1
1
mirror of https://github.com/ellie/atuin.git synced 2024-08-17 17:00:33 +03:00

Move all references to the old repo (#1132)

The repo now lives on an org! Move all references to the old path.
This commit is contained in:
Ellie Huxtable 2023-07-30 23:08:00 +01:00 committed by GitHub
parent 5a457d6b3b
commit 1fb7caa2d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 29 additions and 32 deletions

View File

@ -15,7 +15,7 @@ authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
rust-version = "1.59"
license = "MIT"
homepage = "https://atuin.sh"
repository = "https://github.com/ellie/atuin"
repository = "https://github.com/atuinsh/atuin"
readme = "README.md"
[workspace.dependencies]

View File

@ -9,10 +9,10 @@
<hr/>
<p align="center">
<a href="https://github.com/ellie/atuin/actions?query=workflow%3ARust"><img src="https://img.shields.io/github/actions/workflow/status/ellie/atuin/rust.yml?style=flat-square" /></a>
<a href="https://github.com/atuinsh/atuin/actions?query=workflow%3ARust"><img src="https://img.shields.io/github/actions/workflow/status/atuinsh/atuin/rust.yml?style=flat-square" /></a>
<a href="https://crates.io/crates/atuin"><img src="https://img.shields.io/crates/v/atuin.svg?style=flat-square" /></a>
<a href="https://crates.io/crates/atuin"><img src="https://img.shields.io/crates/d/atuin.svg?style=flat-square" /></a>
<a href="https://github.com/ellie/atuin/blob/main/LICENSE"><img src="https://img.shields.io/crates/l/atuin.svg?style=flat-square" /></a>
<a href="https://github.com/atuinsh/atuin/blob/main/LICENSE"><img src="https://img.shields.io/crates/l/atuin.svg?style=flat-square" /></a>
<a href="https://discord.gg/Fq8bJSKPHh"><img src="https://img.shields.io/discord/954121165239115808" /></a>
<a rel="me" href="https://hachyderm.io/@atuin"><img src="https://img.shields.io/mastodon/follow/109944632283122560?domain=https%3A%2F%2Fhachyderm.io&style=social"/></a>
<a href="https://twitter.com/atuinsh"><img src="https://img.shields.io/twitter/follow/atuinsh?style=social" /></a>
@ -98,7 +98,7 @@ This will sign you up for the default sync server, hosted by me. Everything is e
Read more below for offline-only usage, or for hosting your own server.
```
bash <(curl https://raw.githubusercontent.com/ellie/atuin/main/install.sh)
bash <(curl https://raw.githubusercontent.com/atuinsh/atuin/main/install.sh)
atuin register -u <USERNAME> -e <EMAIL>
atuin import auto
@ -125,7 +125,7 @@ The response includes the URL to your graph. Feel free to share and/or embed thi
## Offline only (no sync)
```
bash <(curl https://raw.githubusercontent.com/ellie/atuin/main/install.sh)
bash <(curl https://raw.githubusercontent.com/atuinsh/atuin/main/install.sh)
atuin import auto
```
@ -144,7 +144,7 @@ system package manager where possible (pacman, homebrew, etc etc).
```
# do not run this as root, root will be asked for if required
bash <(curl https://raw.githubusercontent.com/ellie/atuin/main/install.sh)
bash <(curl https://raw.githubusercontent.com/atuinsh/atuin/main/install.sh)
```
And then follow [the shell setup](#shell-plugin)
@ -183,7 +183,7 @@ And then follow [the shell setup](#shell-plugin)
This repository is a flake, and can be installed using `nix profile`:
```
nix profile install "github:ellie/atuin"
nix profile install "github:atuinsh/atuin"
```
Atuin is also available in [nixpkgs](https://github.com/NixOS/nixpkgs):
@ -216,7 +216,7 @@ And then follow [the shell setup](#shell-plugin)
### From source
```
git clone https://github.com/ellie/atuin.git
git clone https://github.com/atuinsh/atuin.git
cd atuin/atuin
cargo install --path .
```
@ -237,13 +237,13 @@ echo 'eval "$(atuin init zsh)"' >> ~/.zshrc
#### Zinit
```sh
zinit load ellie/atuin
zinit load atuinsh/atuin
```
#### Antigen
```sh
antigen bundle ellie/atuin@main
antigen bundle atuinsh/atuin@main
```
### bash

View File

@ -43,7 +43,7 @@ rustPlatform.buildRustPackage {
meta = with lib; {
description = "Replacement for a shell history which records additional commands context with optional encrypted synchronization between machines";
homepage = "https://github.com/ellie/atuin";
homepage = "https://github.com/atuinsh/atuin";
license = licenses.mit;
};
}

View File

@ -2,7 +2,7 @@ version: '3.5'
services:
atuin:
restart: always
image: ghcr.io/ellie/atuin:main
image: ghcr.io/atuinsh/atuin:main
command: server start
volumes:
- "./config:/config"

View File

@ -46,7 +46,7 @@ And then follow [the shell setup](#shell-plugin)
This repository is a flake, and can be installed using `nix profile`:
```
nix profile install "github:ellie/atuin"
nix profile install "github:atuinsh/atuin"
```
Atuin is also available in [nixpkgs](https://github.com/NixOS/nixpkgs):
@ -82,7 +82,7 @@ Note: Atuin builds on the latest stable version of Rust, and we make no
promises regarding older versions. We recommend using rustup.
```
git clone https://github.com/ellie/atuin.git
git clone https://github.com/atuinsh/atuin.git
cd atuin/atuin
cargo install --path .
```
@ -101,13 +101,13 @@ echo 'eval "$(atuin init zsh)"' >> ~/.zshrc
#### Zinit
```sh
zinit load ellie/atuin
zinit load atuinsh/atuin
```
#### Antigen
```sh
antigen bundle ellie/atuin@main
antigen bundle atuinsh/atuin@main
```
### bash

View File

@ -55,7 +55,7 @@ spec:
value: "8888"
- name: ATUIN_OPEN_REGISTRATION
value: "true"
image: ghcr.io/ellie/atuin:main
image: ghcr.io/atuinsh/atuin:main
name: atuin
ports:
- containerPort: 8888

View File

@ -18,7 +18,7 @@ const config = {
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'ellie', // Usually your GitHub org/user name.
organizationName: 'atuinsh', // Usually your GitHub org/user name.
projectName: 'atuin', // Usually your repo name.
onBrokenLinks: 'warn',
@ -45,14 +45,14 @@ const config = {
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/ellie/atuin/tree/main/docs/',
'https://github.com/atuinsh/atuin/tree/main/docs/',
},
blog: {
showReadingTime: true,
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/ellie/atuin/tree/main/docs/',
'https://github.com/atuinsh/atuin/tree/main/docs/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
@ -102,7 +102,7 @@ const config = {
},
{
label: 'GitHub',
href: 'https://github.com/ellie/atuin',
href: 'https://github.com/atuinsh/atuin',
},
{
label: 'Twitter',

View File

@ -56,7 +56,7 @@ spec:
value: "8888"
- name: ATUIN_OPEN_REGISTRATION
value: "true"
image: ghcr.io/ellie/atuin:main
image: ghcr.io/atuinsh/atuin:main
name: atuin
ports:
- containerPort: 8888

View File

@ -14,7 +14,7 @@ cat << EOF
Magical shell history
Atuin setup
https://github.com/ellie/atuin
https://github.com/atuinsh/atuin
Please file an issue if you encounter any problems!
@ -30,7 +30,7 @@ elif ! command -v sed &> /dev/null; then
exit
fi
LATEST_RELEASE=$(curl -L -s -H 'Accept: application/json' https://github.com/ellie/atuin/releases/latest)
LATEST_RELEASE=$(curl -L -s -H 'Accept: application/json' https://github.com/atuinsh/atuin/releases/latest)
# Allow sed; sometimes it's more readable than ${variable//search/replace}
# shellcheck disable=SC2001
LATEST_VERSION=$(echo "$LATEST_RELEASE" | sed -e 's/.*"tag_name":"\([^"]*\)".*/\1/')
@ -66,7 +66,7 @@ __atuin_install_arch(){
__atuin_install_ubuntu(){
echo "Ubuntu detected"
# TODO: select correct AARCH too
ARTIFACT_URL="https://github.com/ellie/atuin/releases/download/$LATEST_VERSION/atuin_${LATEST_VERSION//v/}_amd64.deb"
ARTIFACT_URL="https://github.com/atuinsh/atuin/releases/download/$LATEST_VERSION/atuin_${LATEST_VERSION//v/}_amd64.deb"
TEMP_DEB="$(mktemp)".deb &&
curl -Lo "$TEMP_DEB" "$ARTIFACT_URL"
@ -149,7 +149,7 @@ __atuin_install_cargo(){
__atuin_install_unsupported(){
echo "Unknown or unsupported OS"
echo "Please check the README at https://github.com/ellie/atuin for manual install instructions"
echo "Please check the README at https://github.com/atuinsh/atuin for manual install instructions"
echo "If you have any problems, please open an issue!"
while true; do
@ -202,11 +202,8 @@ Thanks for installing Atuin! I really hope you like it.
If you have any issues, please open an issue on GitHub or visit our Discord (https://discord.gg/dPhv2B3x)!
Otherwise, Atuin is a hobby project - if you find it valuable, you can help us out!
If you love Atuin, please give us a star on GitHub! It really helps ⭐️ https://github.com/atuinsh/atuin
- ⭐️ Give us a star on GitHub (https://github.com/ellie/atuin)
- 🚀 Contribute! We would love more regular contributors (https://github.com/ellie/atuin)
- 🤑 Sponsor me! If you value the project + want to help keep the hosted sync server free (https://github.com/sponsors/ellie)
Please run "atuin register" to get setup with sync, or "atuin login" if you already have an account
~ Ellie 🐢💖
EOF

View File

@ -30,7 +30,7 @@ spec:
value: "8888"
- name: ATUIN_OPEN_REGISTRATION
value: "true"
image: ghcr.io/ellie/atuin:main
image: ghcr.io/atuinsh/atuin:main
name: atuin
ports:
- containerPort: 8888