- id_card_path: 신분증 사본 경로 - bankbook_path: 통장 사본 경로 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
264 B
Bash
10 lines
264 B
Bash
#!/bin/bash
|
|
echo "Stopping file mode tracking..."
|
|
git config core.filemode false
|
|
echo "Resetting unintentional changes..."
|
|
git checkout .
|
|
echo "Pulling remote changes with rebase..."
|
|
git pull --rebase origin develop
|
|
echo "Pushing synchronized changes..."
|
|
git push
|