git使用脚本

  • 设置用户名和邮箱

    - git config --global user.name lisongyu
    - git config --global user.email li.songyu@qq.com
    
  • 生成本地秘钥(全部回车)

    ssh-keygen.exe -t rsa -C "li.songyu@qq.com"
    
  • 查看生成的公钥

    cat ~/.ssh/id_rsa.pub
    
  • 在远程仓库中设置本地公钥

    1. 打开远程仓库的地址,在设置中选择ssh public keys
    2. 添加公钥
  • git基本命令

    git cloen -b develop http://xxxxxxx.git		# 克隆远程仓库源码到本地,同时使用develop分支
    
    git status -s								# 查看当前代码的状态
    
    git log -5									# 查看最近的5条提交记录,便于回退版本
    
    git add .									# 添加到提交暂存目录中,可以通过status查看本地修改											   过的代码,单选文件夹或文件提交
    git commit -s -m "提交说明"					 # 将暂存的提交文件添加到正式的提交目录中
    
    git push origin 	# 提交到远程仓库中
    
    
    
netstat -aon|findstr "49157"  查看端口
posted @ 2019-09-11 16:15  lisongyu  阅读(954)  评论(0编辑  收藏  举报