git下载提交远程仓库
第一次从远程仓库下载项目
git下载自己项目到本地:
假如外出工作,需要在另一台电脑上面pull自己的某个git远程项目到本地;
1、git init --初始化文件夹
2、git pull https://gitee.com/wuguofeng666/ggg.git (远程仓库url) --下载远程仓库代码到本地文件夹
第一次下载的这个项目更改后需要push的会出现如下错误:
git push
fatal: No configured push destination.
Either specify the URL from the command-line or configure a remote repository using
git remote add <name> <url>
and then push using the remote name
git push <name>
解决方法
# git remote
用法:
1.git remote 不带参数,列出已经存在的远程分支
2.git remote -v | --verbose 列出详细信息,在每一个名字后面列出其远程url,此时, -v 选项(译注:此为 –verbose 的简写,取首字母),显示对应的克隆地址。
3.git remote add url 添加一个远程仓库
这个时候第一次push需要网址:
# git add --all
# git commit -m "提交信息"
# git remote add origin '远程仓库url' --添加一个远程仓库
# git push -u origin 对应远程分支名(master)
以后就不用那么麻烦了,直接:
# git add --all
# git commit -m "信息"
# git push
---------是故无冥冥之志者----------
---------无昭昭之明----------
---------无惛惛之事者----------
---------无赫赫之功----------
本文来自博客园,作者:|是吴啊|,转载请注明原文链接:https://www.cnblogs.com/wuguofeng/p/14653916.html