Skip to content

Commit 022cf00

Browse files
updated git details
1 parent 1619f55 commit 022cf00

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

launch.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
export GIT_USERNAME="YOUR_GIT_NAME"
44
export GIT_EMAIL="YOUR_GIT_EMAIL"
5+
export GIT_PASSWORD="YOUR_GIT_PASSWORD"
56

67
if [ "$(uname)" = "Darwin" ]; then
78
LOCATION=$(pwd)/osx

osx/git_config.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
echo 'GIT settings...'
77
git config --global user.name $GIT_USERNAME
88
git config --global user.email $GIT_EMAIL
9+
git config --local user.password $GIT_PASSWORD
910
git config --global credential.helper osxkeychain
1011
ssh-keygen -t rsa -C $GIT_EMAIL
1112
git config --global core.preloadindex true

readme.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,12 @@
3434

3535
1. Open `launch.sh`
3636

37-
2. Replace `YOUR_GIT_NAME` & `YOUR_GIT_EMAIL` with your personal GitHub details
37+
2. Replace `YOUR_GIT_NAME`, `YOUR_GIT_EMAIL`, and `YOUR_GIT_PASSWORD` with your personal GitHub details
3838

3939
```
40-
export GIT_USERNAME="username"
4140
export GIT_EMAIL="[email protected]"
41+
export GIT_USERNAME="username"
42+
export GIT_PASSWORD="password"
4243
```
4344

4445
3. Run `launch.sh` file in terminal

0 commit comments

Comments
 (0)