1、安装git;
2、找到安装路径,git?
配置账户邮箱;
ssh-keygen -t rsa -C "your_email@youremail.com"
在user文件夹下找到C:\Users\ll\.ssh,id_rsa.pub,打开,
复制里面的key.
3、登录github,Setting->SSH Keys->Add SSH Key
4、验证是否配置成功,在git bash 下输入
ssh -T git@github.com
提示:
You've successfully authenticated,表示连上github。
5、配置账户
git config --global user.name "your name"
git config --global user.name "your_email@youremail.com"
6、进入要上传的仓库,右键git bash,添加远程地址:
git remote add origin git@github.com:yourName/yourRepo.git
7、代码提交
git add <filename>
git add .
git commit -m "代码提交注释说明"
git push origin master
推送到远程仓库:
a.git push -u origin master(github仓库)
b.git push origin HEAD:refs/for/master
合并其他分支到当前分支:
git merge <branch>
git diff <source_branch> <target_branch>
补充:
a.创建一个本地仓库的克隆版本:
git clone /path/to/repository
b.远端服务器的仓库。
git clone username@host:/path/to/repository
参考:
2、https://www.cnblogs.com/wangcuican/p/12522239.html
3、GitHub - jaywcjlove/git-tips: 这里是我的笔记,记录一些git常用和一些记不住的命令。4、