mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-06 15:27:59 +00:00
Proofread docs
This commit is contained in:
@@ -5,10 +5,10 @@ Only do the following if you are using dotdrop version `< 0.7.1` or if you encou
|
||||
---
|
||||
|
||||
Initially dotdrop was only available as a submodule directly in the
|
||||
dotfiles git tree. When updated to work with pypi, some code changed
|
||||
dotfiles git tree. When updated to work with PyPI, some code changed
|
||||
that brought some issues to older versions.
|
||||
|
||||
If you want to keep it as a submodule (recommended), simply do the following
|
||||
If you want to keep it as a submodule (recommended), simply do the following:
|
||||
```bash
|
||||
$ cd <dotfiles-directory>
|
||||
|
||||
@@ -30,40 +30,40 @@ $ git commit -m 'update dotdrop.sh'
|
||||
$ git push
|
||||
```
|
||||
|
||||
Otherwise, simply install it from pypi as shown below:
|
||||
Otherwise, simply install it from PyPI as shown below:
|
||||
|
||||
* move to the dotfiles directory where dotdrop is used as a submodule
|
||||
* Move to the dotfiles directory where dotdrop is used as a submodule
|
||||
```bash
|
||||
$ cd <dotfiles-repository>
|
||||
```
|
||||
* remove the entire `submodule "dotdrop"` section in `.gitmodules`
|
||||
* stage the changes
|
||||
* Remove the entire `submodule "dotdrop"` section in `.gitmodules`
|
||||
* Stage the changes
|
||||
```bash
|
||||
$ git add .gitmodules
|
||||
```
|
||||
* remove the entire `submodule "dotdrop"` section in `.git/config`
|
||||
* remove the submodule
|
||||
* Remove the entire `submodule "dotdrop"` section in `.git/config`
|
||||
* Remove the submodule
|
||||
```bash
|
||||
$ git rm --cached dotdrop
|
||||
```
|
||||
* remove the submodule from .git
|
||||
* Remove the submodule from .git
|
||||
```bash
|
||||
$ rm -rf .git/modules/dotdrop
|
||||
```
|
||||
* commit the changes
|
||||
* Commit the changes
|
||||
```bash
|
||||
$ git commit -m 'removing dotdrop submodule'
|
||||
```
|
||||
* remove any remaining files from the dotdrop submodule
|
||||
* Remove any remaining files from the dotdrop submodule
|
||||
```bash
|
||||
$ rm -rf dotdrop
|
||||
```
|
||||
* remove `dotdrop.sh`
|
||||
* Remove `dotdrop.sh`
|
||||
```bash
|
||||
$ git rm dotdrop.sh
|
||||
$ git commit -m 'remove dotdrop.sh script'
|
||||
```
|
||||
* push upstream
|
||||
* Push upstream
|
||||
```bash
|
||||
$ git push
|
||||
```
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
For more examples, see how people are using dotdrop
|
||||
For more examples, see how people are using dotdrop:
|
||||
|
||||
* [https://github.com/open-dynaMIX/dotfiles](https://github.com/open-dynaMIX/dotfiles)
|
||||
* [https://github.com/moyiz/dotfiles](https://github.com/moyiz/dotfiles)
|
||||
@@ -7,6 +7,6 @@ For more examples, see how people are using dotdrop
|
||||
* [https://github.com/Eluminae/dotfiles](https://github.com/Eluminae/dotfiles)
|
||||
* [https://github.com/davla/dotfiles](https://github.com/davla/dotfiles) and [https://github.com/davla/setup](https://github.com/davla/setup)
|
||||
|
||||
Dotfiles repository using dotdrop on [github](https://github.com/topics/dotdrop?o=desc&s=updated) and [gitlab](https://gitlab.com/search?search=dotdrop).
|
||||
Dotfiles repositories using dotdrop on [GitHub](https://github.com/topics/dotdrop?o=desc&s=updated) and [GitLab](https://gitlab.com/search?search=dotdrop).
|
||||
|
||||
Or search directly on [github](https://github.com/search?q=filename%3Aconfig.yaml+dotdrop&type=Code) for config examples.
|
||||
Or search directly on [GitHub](https://github.com/search?q=filename%3Aconfig.yaml+dotdrop&type=Code) for config examples.
|
||||
|
||||
Reference in New Issue
Block a user