personal git wiki progress

This commit is contained in:
rusefi 2020-04-18 14:20:13 -04:00
parent 361f687ecf
commit 6994533742
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,13 @@
One way to preview local changes to your fork of technical repository is to push those changes into your personal wiki git.
I only know how to do this from command line
```
git clone https://github.com/YOURNAME/rusefi_documentation.git
cd rusefi_documentation
git remote add personal-wiki-git https://github.com/YOURNAME/rusefi_documentation.wiki.git
git push --force personal-wiki-git master
```

View File

@ -0,0 +1,6 @@
git fetch personal-wiki-git >> log.txt 2>>err.txt
git checkout -b personal-wiki-git-local personal-wiki-git/master >> log.txt 2>>err.txt
git merge origin/master >> log.txt 2>>err.txt
git push personal-wiki-git HEAD:master >> log.txt 2>>err.txt
git branch -d personal-wiki-git-local >> log.txt 2>>err.txt