git工具窗口使用命令

git工具的使用

  1. 配置用户身份
typescript 复制代码
  git config --global user.name = ''
  git config --global user.email= ''
  1. 初始化仓库
typescript 复制代码
   git  init 'path路径'
  1. 提交暂存区
typescript 复制代码
   git add . // .:代表当前目录
如何在本地去掉:
typescript 复制代码
git restore  -staged  文件名
  1. 提交本地库
typescript 复制代码
git commit -m ' 提交填写信息' 
当提交出现错误:
php 复制代码
git reset _hard  '提交ID'   // ID 在 日志中查询前7位
  1. 查看历史
typescript 复制代码
   git log
  1. 回溯历史
typescript 复制代码
   git reflog
  1. 查看分支
typescript 复制代码
   git branch
  1. 创建分支
typescript 复制代码
   git branch '分支名称'
  1. 切换分支
typescript 复制代码
   git checkout '分支'
  1. 分支合并
typescript 复制代码
git merge '分支'
  1. 冲突解决
typescript 复制代码
    1.git pull 

    2.git push 

    3.解决冲突(人工变更文件)

    4.git push
  1. 查看git配置

    git config -L(小写)
    
  2. 校验状态

    git status
    
  3. 查看远程仓库

    git remote
  1. 创建远程仓库(origin )

    git remote add origin 'git仓库网址'
    
  2. 推送远程仓库

    git push -u origin  master
  1. 远程拉取

    git pull 
    
相关推荐
yyycqupt4 小时前
git使用(一)
git
Kkooe7 小时前
GitLab|数据迁移
运维·服务器·git
Beekeeper&&P...8 小时前
git bash是什么,git是什么,git中的暂存区是什么,git中的本地仓库是什么,git中工作目录指的是什么
开发语言·git·bash
兰琛11 小时前
20241121 android中树结构列表(使用recyclerView实现)
android·gitee
Stara051113 小时前
Git推送+拉去+uwsgi+Nginx服务器部署项目
git·python·mysql·nginx·gitee·github·uwsgi
坐公交也用券13 小时前
使用Python3实现Gitee码云自动化发布
运维·gitee·自动化
lsswear13 小时前
GIT 操作
git
勋勋勋勋小勋勋13 小时前
git分支合并某一次提交
git
PandaCave14 小时前
git常用命令以及注意事项总结
git