一、如何把项目通过git上传的github内。
1.进入Github首页,点击New repository新建一个项目
2、填写相关信息
Repository name: 仓库名称
Description(可选): 仓库描述介绍
Public, Private : 仓库权限(公开共享,私有或指定合作者)
Initialize this repository with a README: 添加一个README.md
gitignore: 不需要进行版本管理的仓库类型,对应生成文件.gitignore
license: 证书类型,对应生成文件LICENSE
写好后点击create repository
4.点击Clone or dowload会出现一个地址,copy这个地址备用。
https://github.com/liuxv9712/PythonOnline.git
5.如果你想copyGit上的代码到本地,首先右键你的项目,如果你之前安装git成功的话,右键会出现两个新选项,分别为Git Gui Here,Git Bash Here,这里我们选择Git Bash Here,进入如下界面,PythonOnline即为我的项目名。注意要是文件夹或文件不能是压缩包。
6.接下来输入如下代码(关键步骤),把github上面的仓库克隆到本地
git clone https://github.com/CKTim/BlueTooth.git(https://github.com/CKTim/BlueTooth.git替换成你之前复制的地址)
7.这个步骤以后你的本地项目文件夹下面就会多出个文件夹,该文件夹名即为你github上面的项目名,如图我多出了个Test文件夹,我们把本地项目文件夹下的所有文件(除了新多出的那个文件夹不用),其余都复制到那个新多出的文件夹下。
8.接着继续输入命令 cd Test,进入Test文件夹。
9.接下来依次输入以下代码即可完成其他剩余操作:
git add . (注:别忘记后面的.,此操作是把Test文件夹下面的文件都添加进来)
git commit -m "提交信息" (注:“提交信息”里面换成你需要,如“first commit”)
git push -u origin master (注:此操作目的是把本地仓库push到github上面,此步骤需要你输入帐号和密码)
问题一
git commit 时出现:
$ git commit -m "提交文件"
fatal: could not open '.git/COMMIT_EDITMSG': Permission denied
提交所有提交不上去,写了个测试文档提交上去了,这是为啥。
解决方法:直接删除’.git/COMMIT_EDITMSG 文件解决
问题二、解决Git上传过程中出现:nothing to commit, working tree clean
问题三:
$ git push -u test master
To github.com:liuxv9712/PythonOnline.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'git@github.com:liuxv9712/PythonOnline.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
未解决
问题四:
$ git push -u test master
Connection reset by 192.30.253.112 port 22
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
未解决
下载一个GitHub的客户端