Move pinouts to pages.rusefi.com #170
This commit is contained in:
parent
38eaa3bdff
commit
6cf5cf2e24
|
@ -2,6 +2,7 @@
|
||||||
build/
|
build/
|
||||||
build_kinetis/
|
build_kinetis/
|
||||||
pinouts
|
pinouts
|
||||||
|
workarea
|
||||||
out/
|
out/
|
||||||
logs/
|
logs/
|
||||||
blbuild/
|
blbuild/
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
rm -rf workarea
|
||||||
|
mkdir workarea
|
||||||
|
git clone https://github.com/rusefi/rusefi.github.io.git workarea/pages
|
||||||
|
|
||||||
|
mv pinouts/ workarea/pages/
|
||||||
|
cd workarea/pages/
|
||||||
|
git add *
|
||||||
|
git status
|
||||||
|
|
||||||
|
git config --local user.email "action@github.com"
|
||||||
|
git config --local user.name "GitHub build-firmware Action"
|
||||||
|
|
||||||
|
git commit -m 'pinouts'
|
||||||
|
git push
|
Loading…
Reference in New Issue