This repository was archived by the owner on Oct 30, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathinstall-filter.sh
31 lines (23 loc) · 1.52 KB
/
install-filter.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
#!/usr/bin/sh
# Run this file to let git smudge your credentials so you don't have to
# reenter them when pulling master or changing branches.
# The changes this script makes will be made to `.git/config` in the root of the repo.
# If you want to reset the changes, run `git config --unset-all filter.filter-credentials`
# in the root of the repo.
# -------------------------------------------------
# Change these before running the script
# -------------------------------------------------
your_developer_id="1234567890" # Your 10 digit developer ID. Example is FTT89576VQ
your_usr_id="anything.you.want" # Anything you want. Sets USR_DOMAIN in the project.
# -------------------------------------------------
# Don't change anything below
# -------------------------------------------------
# These should be changed in the repo if the corresponding values change in the pbxproj file.
project_developer_id="FTT89576VQ"
project_usr_id="ccrama.me"
# Apply the contents of the smudge command right away
sed -i.bak -e "s/$project_developer_id/$your_developer_id/" -e "s/$project_usr_id/$your_usr_id/" 'Slide for Reddit.xcodeproj/project.pbxproj'
# Converts credentials from project's to yours when pulling
git config filter.filter-credentials.smudge "sed -e 's/$project_developer_id/$your_developer_id/' -e 's/$project_usr_id/$your_usr_id/'"
# Converts credentials from yours to project's when making commits
git config filter.filter-credentials.clean "sed -e 's/$your_developer_id/$project_developer_id/' -e 's/$your_usr_id/$project_usr_id/'"