美文网首页
git 常用命令

git 常用命令

作者: YiYaYiYaHei | 来源:发表于2021-04-15 17:27 被阅读0次
    1、clone项目

    git clone 仓库地址

    • 直接clone指定分支
      git clone -b 分支名 仓库地址
      例:git clone -b dev git@xxx
    2、切换分支并拉取分支上的代码

    git checkout -b 本地分支名 origin/远程分支名
    例:git checkout -b dev origin/dev

    第二种:
    git fetch
    git checkout 分支名

    3、上传代码
    上传所有:git add .
    上传指定文件: git add 文件路径        例:git add vue/test.vue
    
    4、查看暂存区状态

    git status

    5、填写提交备注

    git commit -m "修改信息"

    • 修改提交信息 (仅仅只能针对最后一次提交)
    git commit --amend -m "新的修改提交信息"
    git push --force-with-lease orign 分支名称   
    
    6、添加到远程仓库

    git remote add origin 远程仓库地址

    下图表示远程仓库地址已存在,此时可以执行git remote rm origin
    删除远程仓库后,在执行git remote add origin

    image.png
    8、推送到远程仓库

    git push -u origin 远程仓库分支名称

    9、设置用户信息
    git config --global user.name "John Doe"
    git config --global user.email johndoe@example.com
    
    10、更新代码

    git pull origin 远程仓库分支名称

    11、回退至指定版本

    git reset --hard 版本号

    12、解决冲突(git pull 报”啥啥啥brefore merge“)
    git stash
    git pull 
    git stash pop
    若需更新Git上的代码,再git add .
    
    13、合并分支

    git merge 分支名称 (当前所在分支和 分支名称 进行合并)

    14、切换分支

    git checkout 分支名称

    15、分支列表

    git branch

    16、ssh-key生成公钥

    ssh-keygen -t rsa -C “youremail.com”

    17、清空用户登录信息

    git config --system --unset credential.helper

    18、记住密码

    执行完 git config --global credential.helper store 之后,只需要输入一次用户名、密码,下次就不用输入了

    相关文章

      网友评论

          本文标题:git 常用命令

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