美文网首页
上传项目到自己的github仓库

上传项目到自己的github仓库

作者: a微风掠过 | 来源:发表于2018-02-10 11:49 被阅读0次

1、首先建立本地的git文件夹

第一步:建立git仓库

cd到你的本地项目根目录下,执行git命令
git init
第二步:将项目的所有文件添加到仓库中

git add .

如果想添加某个特定的文件,只需把.换成特定的文件名即可

第三步:将add的文件commit到仓库

git commit -m "注释语句"

第四步:去github上创建自己的Repository,创建页面如下图所示:

拷贝仓库地址,形式如下:

https://github.com/github_username/project_name

第五步:重点来了,将本地的仓库关联到github上

git remote add origin https://github.com/hanhailong/CustomRatingBar

第六步:上传github之前,要先pull一下,执行如下命令:

git pull origin master(做不了就算了,可以接着下一步)

第七步,也就是最后一步,上传代码到github远程仓库

git push -u origin master

如出现如下提示:

to set your account's default identity.

Omit --global to set the identity only in this repository.

需设置git的用户名和地址:

git config --global user.name "XXX"

git config --global user.email "XXX"

相关文章

网友评论

      本文标题:上传项目到自己的github仓库

      本文链接:https://www.haomeiwen.com/subject/lypctftx.html