You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
333 B
Bash
15 lines
333 B
Bash
#프로젝트 최상위 에서...
|
|
rm -rf .git
|
|
git init
|
|
git checkout -b main
|
|
git add README.md
|
|
git commit -m "first commit"
|
|
git credential approve <<EOF
|
|
protocol=https
|
|
host=http://211.119.124.110:3000
|
|
username=cityhunter
|
|
password=060505
|
|
EOF
|
|
|
|
git remote add origin http://211.119.124.110:3000/xit-app/namsan.git
|
|
git push -u origin main |