向Git提交代码
1.ssh协议- 安装ssh
linux及mac默认安装好了,win下需自行安装
在shell中键入: ssh-keygen -r rsa 连续按三个enter
生成两个文件
在目录~./ssh下找到 id_rsa.pub 用sublime text打开
2.git push pull
push:推
pull:拉
git pull origin master
git pull origin master
首先需要git add files-> git commit -m '注释' git push origin master ->git pull origin master->
git remote add origin 地址
进阶之路:
git alias:
1.git log图形化界面:
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
git config --global alias.lg "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative"
git config --global alias.psm 'push origin master'
git config --global alias.plm 'pull origin master'
网友评论