上传本地代码到github
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上传本地代码到github相关的知识,希望对你有一定的参考价值。
在要上传代码的目录下右键,点击“Git Bash Here”;
如果本地没有配置过ssh,则需要在本地创建ssh key,
$ ssh-keygen -t rsa -C "你的邮箱地址"
回到github网页,选择左侧列表的“ssh and GPG keys”,点击“new ssh key”按钮,将本地目录生成的
id_rsa.pub中的key值拷贝到网页中,保存;
测试github连接是否成功,在gitbash中输入 ssh -T [email protected];
连接成功后,配置用户名和邮箱地址,进行身份认证。
$ git config --global user.name "用户名"
$ git config --global user.email "邮箱"
git init
git add .(add和点之间有空格)
git commit -m "提交代码的注释"
git remote add origin [email protected]:用户名/repo名称
git push origin master//将本地项目更新到github项目上去
以上是关于上传本地代码到github的主要内容,如果未能解决你的问题,请参考以下文章