10 lines
208 B
Batchfile
10 lines
208 B
Batchfile
touch .gitignore
|
|
pause
|
|
touch README.md
|
|
git init
|
|
git checkout -b main
|
|
git add README.md
|
|
git commit -m "first commit"
|
|
git remote add origin http://192.168.111.81:3000/shu/OnDoc.git
|
|
git push -u origin main
|
|
pause |