我已经提交了那些已更改的文件,但我无法通过终端将代码推送到gitalb。你能帮我么。谢谢你提前。
答案 0 :(得分:5)
我希望您使用此命令正确提交代码:
git commit -m“commit message”
现在检查您的遥控器是否指向GitLab中的存储库 使用:
git remote -v
如果存在遥控器,它可能会显示如下内容:
sample-group http://10.212.0.147:8888/shaggy/myProject.git (fetch)
sample-group http://10.212.0.147:8888/shaggy/myProject.git (push)
origin http://10.212.0.147:8888/shaggy/myProject.git (fetch)
origin http://10.212.0.147:8888/shaggy/myProject.git (push)
如果GitLab的远程位置不存在,则使用以下命令添加远程:
git remote add origin your_GitLabs_repository_URL
再次检查遥控器
git remote -v
现在您已准备好将存储库推送到GitLab repoisoty 使用te命令
git push origin master
供参考https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
答案 1 :(得分:0)
如果您已经在then项目中拥有一个Github帐户,但您想将代码添加到Gitlab而不丢失github remote,那么
第1步:提交代码
第2步:转到gitlab并获取项目的远程URL
第3步:转到您的项目并启动终端,然后输入以下命令
git remote add origin1
第4步:输入代码
git push origin1 master