1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-10 12:44:15 +00:00

migration doc updated

This commit is contained in:
deadc0de6
2017-12-23 22:16:39 +01:00
parent c493f8ab8f
commit 2dce0ecdb7
2 changed files with 12 additions and 3 deletions

View File

@@ -582,13 +582,19 @@ $ cd <dotfiles-directory>
## get latest version of the submodule ## get latest version of the submodule
$ git submodule foreach git pull origin master $ git submodule foreach git pull origin master
## and update it upstream ## and stage the changes
$ git add dotdrop $ git add dotdrop
$ git commit -m 'update dotdrop' $ git commit -m 'update dotdrop'
$ git push
## update the bash script wrapper ## update the bash script wrapper
$ ./dotdrop/bootstrap.sh $ ./dotdrop/bootstrap.sh
## and stage the change to the dotdrop.sh script
$ git add dotdrop.sh
$ git commit -m 'update dotdrop.sh'
## and finally push the changes upstream
$ git push
``` ```
Otherwise, simply install it from pypi as explained [above](#with-pypi) Otherwise, simply install it from pypi as explained [above](#with-pypi)

View File

@@ -23,9 +23,12 @@ First get the latest version of dotdrop:
$ git submodule foreach git pull origin master $ git submodule foreach git pull origin master
$ git add dotdrop $ git add dotdrop
$ git commit -m 'update dotdrop' $ git commit -m 'update dotdrop'
$ git push
And then re-run the bootstrap script to update \"dotdrop.sh\": And then re-run the bootstrap script to update \"dotdrop.sh\":
$ ./dotdrop/bootstrap.sh $ ./dotdrop/bootstrap.sh
$ git add dotdrop.sh
$ git commit -m 'update dotdrop.sh'
And finally push the changes upstream
$ git push
For more, see https://github.com/deadc0de6/dotdrop#migrate-from-submodule For more, see https://github.com/deadc0de6/dotdrop#migrate-from-submodule
''' '''