|
@@ -24,7 +24,9 @@ git init
|
|
|
git add README.md
|
|
|
git commit -m "first commit"
|
|
|
git remote add origin root@git.mintelcn.com:Minte-development/Test-project.git
|
|
|
-git push origin master --force
|
|
|
+git push --set-upstream origin master
|
|
|
+#后续直接git push即可
|
|
|
+#git push origin master --force
|
|
|
# --force 表示强制本地覆盖线上
|
|
|
```
|
|
|
|