美文网首页
Git常用命令

Git常用命令

作者: eoeoops | 来源:发表于2016-07-21 21:09 被阅读24次
  1. 不小心在项目后台直接删除分支
    git fetch -p origin

  2. 查看log
    git log

  3. 回退到某个版本
    git reset --hard xxxxx(commit hash)

  4. 推送所有标签
    git push origin --tags

  5. 设置用户名和邮箱

    git config --global user.name [username]
    git config --global user.email [email]
    
  6. 查看已设配置
    git config --list

  7. 从git管理中移除重新添加

    git rm -r --cached . 
    git add .
    
  8. fatal: refusing to merge unrelated histories

    git pull origin master --allow-unrelated-histories
    
  9. 重置远程仓库地址

    git remte origin set-url URL
    
  10. 删除远程tag

    git push origin --delete tag <tagname>
    
  11. 删除本地tag

    git tag -d <tagname>
    

相关文章

网友评论

      本文标题:Git常用命令

      本文链接:https://www.haomeiwen.com/subject/lanbjttx.html