美文网首页
git 常用命令

git 常用命令

作者: 冬至_5b58 | 来源:发表于2019-07-22 21:29 被阅读0次

    git切换账户

    git config user.name      //查看用户名
    
    git config user.email      //查看用户邮箱
    
    //修改用户名和邮箱的命令
    git config --global user.name "Your_username"
    git config --global user.email "Your_email"
    
    git add ./*.java     (# 通配符方式添加多个文件)
    git add HelloWorld.java  (添加文件)
    
    将缓存区(Index)中的内容提交到git仓库中
    git commit -m  "xxxx"    (提交时填写说明(message))
    
    git push origin --tags  (# 把本端所有的标签(的版本)推送到远端)
    
    git checkout  branchName     # 切换至某分支
    
    git pull <remote> <branch>:把远端origin的master分支拖动到本端git仓库
    
    git merge origin/branchName  (# 把其他某个分支,合并入当前分支.)
    
    (当webpack.json中有pre-commit 的eslint 检测提交时,可以绕过代码检测强制提交)
    git add . && git commit --no-verify -m "代码规范强制提交测试"

    相关文章

      网友评论

          本文标题:git 常用命令

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