FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Arduino/lib_sync at master · hitll/Arduino · GitHub
hitll
/
Arduino
Public
forked from
arduino/Arduino
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Arduino
/
lib_sync
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
48 lines (35 loc) · 1.44 KB
Breadcrumbs
Arduino
/
lib_sync
Copy path
File metadata and controls
executable file
·
48 lines (35 loc) · 1.44 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!
/bin/bash -ex
git checkout master
LIB=
$1
git branch lib_
$LIB
git checkout lib_
$LIB
git filter-branch -f --prune-empty --subdirectory-filter libraries/
$LIB
lib_
$LIB
cd
../libraries
mkdir
$LIB
cd
$LIB
git init
git pull ../../Arduino lib_
$LIB
git config user.email f.fissore@arduino.cc
git filter-branch -f --commit-filter
'
if [ "$GIT_AUTHOR_EMAIL" = "f.vanzati@gmail.com" ];
then export GIT_AUTHOR_EMAIL=f.vanzati@arduino.cc;
fi; git commit-tree "$@"
'
git filter-branch -f --commit-filter
'
if [ "$GIT_AUTHOR_EMAIL" = "federico@fissore.org" ];
then export GIT_AUTHOR_EMAIL=f.fissore@arduino.cc;
fi; git commit-tree "$@"
'
git filter-branch -f --commit-filter
'
if [ "$GIT_AUTHOR_EMAIL" = "c.maglie@bug.st" ];
then export GIT_AUTHOR_EMAIL=c.maglie@arduino.cc;
fi; git commit-tree "$@"
'
git filter-branch -f --commit-filter
'
if [ "$GIT_AUTHOR_EMAIL" = "tigoe@tigoemac.itp.tsoa.nyu.edu" ];
then export GIT_AUTHOR_EMAIL=t.igoe@arduino.cc;
fi; git commit-tree "$@"
'
git filter-branch -f --commit-filter
'
if [ "$GIT_AUTHOR_EMAIL" = "tom.igoe@gmail.com" ];
then export GIT_AUTHOR_EMAIL=t.igoe@arduino.cc;
fi; git commit-tree "$@"
'
git filter-branch -f --commit-filter
'
if [ "$GIT_AUTHOR_EMAIL" = "facchinm@users.noreply.github.com" ];
then export GIT_AUTHOR_EMAIL=m.facchin@arduino.cc;
fi; git commit-tree "$@"
'
git remote add origin git@github.com:arduino-libraries/
$LIB
.git
git fetch --all
cd
../../Arduino
git checkout master
git branch -D lib_
$LIB
Back
|
FazBrowse Home
|
New Git URL