-
Notifications
You must be signed in to change notification settings - Fork 8
/
ignore.sh
36 lines (33 loc) · 883 Bytes
/
ignore.sh
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
#!/bin/bash
declare -a repos=(
"OpenQ-CoinAPI"
"OpenQ-Oracle"
"OpenQ-Frontend"
"OpenQ-Contracts"
"OpenQ-Github-OAuth-Server"
"OpenQ-Graph"
"OpenQ-Kubeconfig"
"OpenQ-Bot"
"OpenQ-API"
"OpenQ-Architecture"
"OpenQ-OZ-Claim-Autotask"
"OpenQ-Bounty-Actions-Autotask"
"OpenQ-Event-Listener"
"OpenQ-Token-Price-Cron-Job"
"Superfluid-Subgraph"
"OpenQ-Synpress"
"OpenQ-Notification-Autotask"
"OpenQ-User-Registration"
"OpenQ-Email-Server"
"OpenQ-Helm"
"OpenQ-Github-Proxy"
"OpenQ-Document-Manager"
)
echo 'CAREFUL THIS SCRIPT STASHES ALL REPOS'
for repo in "${repos[@]}"
do
cd "$repo"
git config core.fileMode false
echo "Ignored $repo"
cd ..
done