标签:
下载git安装 ->https://git-scm.com/downloads
新建git目录 在目录下右键选择Git Bash Here
创建一个身份标识
git config --global user.name 你的github用户名
git config --global user.email 你的github所用的邮箱
执行 git init
拷贝项目到git目录下
在git里生成公钥文件
ssh-keygen -t rsa -C 你的github所用的邮箱
直接回车里面有生成.ssh目录
拷贝id_rsa.pub中内容到github创建公钥
测试Github连接命令
ssh –t git@github.com
显示Hi 用户名! You‘ve successfully authenticated, but GitHub does not provide shell access.表示连接成功
添加远程地址:
git remote add origin (git远程地址例如:git@github.com:j2eemail/MenuDialogFragment.git)
提交代码到本在仓库
git commit -m "first commit"
初始化代码合并
git pull --rebase origin master
提交代码到服务器
git push -u origin master
标签:
原文地址:http://www.cnblogs.com/QQ80565970/p/5718504.html