Git控制指令

  1. git status查看当前本地分支的修改状态

  2. git diff 文件路径 查看具体文件的修改内容

  3. git log打印用户信息

  4. git remote -v查看远程地址

  5. git checkout -- *还原被删除的文件

  6. git rm -r --force .删除本地所有文件

  7. git commit -m "Remove all files from repository"提交所有代码

  8. git clone 克隆项目

  9. git remote add 添加远程地址

  10. git add 添加所有文件

  11. git push -u origin master 推送

  12. git log 分页 or 退出

  • 如果 git log 的输出比屏幕还要长,通常会使用像 less 或 more 这样的分页器来显示。在这种情况下,你可以按下 Q键来退出。
  • 如果使用的是 less,按下 Q 键。
  • 如果使用的是 more,按下 Space 键(按一次一页)或者 Q 键。
  1. repo 使用
    初始化仓库
    repo init -u https://mirrors.tuna.tsinghua.edu.cn/git/AOSP/platform/manifest

    下载单仓
    repo sync platform/frameworks/base
    repo sync platform/frameworks/native
    repo sync packages/apps/Launcher3
    repo sync packages/apps/Settings

参看对应分支
cd manifest
git branch 查看当前分支
git branch -a 查看所有分支
git branch -a |grep android11-
切换分支
git checkout -b android-8.0.0_r17 origin/android-8.0.0_r17

14 .git撤销文件修改
git checkout -- 文件名

15 .撤销到最近一次的提交
git reset --hard HEAD

相关推荐
晓理紫4 小时前
使用git lfs向huggingface提交较大的数据或者权重
git
我不是程序猿儿5 小时前
【GIT】sourceTree的“当前分支“,“合并分支“与“检出分支的区别
git
_OLi_12 小时前
IDEA中新建与切换Git分支
java·spring boot·git
PyAIGCMaster16 小时前
ubuntu下安装 git 及部署cosyvoice(1)
git
维__kxs766717 小时前
小程序 + AI 自动直播:一部手机开启抖音挂载小程序流量主变现之旅
git·eclipse
爱吃土豆的马铃薯ㅤㅤㅤㅤㅤㅤㅤㅤㅤ1 天前
GIT GUI和 GIT bash区别
开发语言·git·bash
zhuyan1081 天前
【git】使用记录
git
KrisZhang101 天前
Git分支
git·1024程序员节
孤影&碧空1 天前
书生大模型第三关Git 基础知识
git
code .1 天前
git使用的一般流程
git