2023-01-06 17:10:33 -08:00
|
|
|
# Special Git Notes
|
2020-04-18 11:20:13 -07:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2023-01-06 17:10:33 -08:00
|
|
|
```shell
|
2020-04-18 11:20:13 -07:00
|
|
|
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
|
|
|
|
|
2023-01-02 11:22:23 -08:00
|
|
|
```
|