17 lines
557 B
Org Mode
17 lines
557 B
Org Mode
* Installation
|
|
|
|
The ol' wget-bash. This will end up creating a =~/.git_home= directory, and should print and abort if there are conflicting files.
|
|
|
|
#+BEGIN_SRC sh
|
|
wget -O - https://gitlab.maxregan.me/max/configs/-/raw/master/.mgr_config/install.sh 2> /dev/null | bash
|
|
#+END_SRC
|
|
|
|
or, if you prefer to curl-bash
|
|
|
|
#+BEGIN_SRC sh
|
|
curl https://gitlab.maxregan.me/max/configs/-/raw/master/.mgr_config/install.sh | bash
|
|
#+END_SRC
|
|
|
|
* Usage
|
|
|
|
=git-home= is the magic command that will use the home directory as the worktree and =~/.git_home= as the git directory. |