git

1.配置ssh向导

小编是利用git bash用命令生成
ssh-keygen -t rsa -C "输入你需要绑定的邮箱" -b 4096
回车会出现
Enter file in which to save the key (/c/Users/ztt/.ssh/id_rsa):
输入你的文件名类似ztt_rsa(后缀名不可变)
回车提示
Enter passphrase (empty for no passphrase):
直接回车即可。

2.找到你生成的rsa文件,小编的文件在C:\Users\ztt\.ssh下,如果同时使用gitlab和github建议分开命名

3.在C:\Users\ztt\.ssh下新建config配置文件

#github
Host github.com
    HostName github.com
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/github_rsa

4.通过git pull,git push测试是否配置成功。



git使用(最近做项目使用到的命令)

1.我自己的代码;建立本地仓库,初始化,配置git config,
2.克隆下来代码,切换分支V1.0.2->git add 文件夹->git commit -m “备注”->git push ;
随时查看状态git status
3.冲突git pull --rebase 在需要上传的分支上执行这个操作->git add .文件->git rebase --continue ->git push
4.如果你发现代码提交错误,查看提交历史git log->git reset heard HEAD xx(可以回退到之前的版本);或则利用 git rebase --abort 会回到rebase操作之前的状态,之前的提交的不会丢弃;


新手上路,有错误欢迎批评指正

你可能感兴趣的:(git)