赞
踩
1、在github上创建项目
2、使用git clone https://github.com/xxxxxxx/xxxxx.git 克隆到本地
3、编辑项目【增、删、改】
git status ## 查看修改的状态
git diff . ## 查看修改的具体不同
4、git add . (将改动添加到暂存区)
5、git commit -m "提交说明"
6、git push origin master 将本地更改推送到远程master分支。
这样你就完成了向远程仓库的推送。
需要注意的是:如果新增了一个空的文件夹,那么Git是检测不到的,需要我们在文件夹中随便创建一个文件,然后使用git status能够检测到变化,这个时候再一次去执行git add -A;git commit -m “提交的备注信息”;git push。
git pull命令是将远程仓库中的更改同步更新到本地仓库。
当我们在github版本库中发现一个问题后,你在github上对它进行了在线的修改;或者你直接在github上的某个库中添加readme文件或者其他什么文件,但是没有对本地库进行同步。这个时候当你再次有commit想要从本地库提交到远程的github库中时就会出现push失败的问题。
如下图所示
我在github库中对某个文件进行了在线的编辑,并且没有同步到本地库,之后我在本地库添加了文件test.txt,并想提交到github,出现以下错误:error:failed to push some refs to。
原因:远程库与本地库不一致造成的,那么我们把远程库同步到本地库就可以了。
解决方案:
git pull --rebase origin master
这条指令的意思是把远程库中的更新合并到本地库中,–rebase的作用是取消掉本地库中刚刚的commit,并把他们接到更新后的版本库之中。
Master Zhang@DESKTOP-UC7N2QM MINGW64 /c/GitHub_test/language (master)
$ 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>
原因:推送至远程仓库时,缺少目标仓库地址。
解决方法:
1、添加远程仓库地址:
git remote add origin https://github.com/**/*.git
2、 推送本地代码至远程仓库分支
git push -u origin master
原因:目录中没有文件,空目录是不能提交上去的
解决方案:
git add README
git commit -m 'first commit'
git push origin master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。