Skip to the content.

参考gitlab的目录结构

https://about.gitlab.com/images/press/git-cheat-sheet.pdf

5个位置

Stash <–> Workspace <–> Index <–> Local Repository <–> Upstream Repository

01 安装git后的第一次配置

using ssh

修改当前仓库的config文件中的url

#url = https://github.com/xuechou/interpreter.git
url = git@github.com:xuechou/interpreter.git

02 新建或者克隆git仓库

递归克隆仓库,针对包含sub-module的仓库

03 日常工作,使用的最多

检查已修改内容

撤销所有修改,回到HEAD版本,并且删除untracked file,此方法可以保证workspace clean

新增提交

删除提交中的某个文件

追加提交,或者修改当前提交的Log

04 分支模型

列出所有分支

05 查看日志

git log -1 查看最近1次的提交记录

git log -1 --name-status 显示最近提交的文件变更列表

git log --author=xxx 只查看某个人的提交

08 仓库间的同步

建议push之前,先进行rebase操作,避免push失败

git rebase后提示error: cannot rebase: You have unstaged changes.

09 一个文件夹同时检出多个分支——git worktree

我思考下面的目录结构是简洁的

- repo_name\
    - main_branch\
    - dev_branch\
    - temp_branch\

工作中常见的工作流,worktree能改善的地方

1:需要同步到远程仓库,worktree可以多分支都是已经编译的状态,避免切换分支 2:只存档于本地,不需要同步到远程仓库,worktree可添加detached branch

10 仓库中引用另一个仓库——git子模块,submudule

怎么给仓库中添加一个新的submodule?

如何克隆含submodule的代码仓库?

简单,克隆时加选项--recurse-submodules

远程的子模块更新后,如何更新本地仓库的子模块?

只想更新其中一个子模块,怎么做?

想查看某个子模块更改啥?

直接git status只能看到submodule这个文件变成dirty;

得切换到submodule队友的目录下,然后git status

如何保持workspace clean,包括子模块也是clean?

git clean -xfd
git submodule foreach --recursive git clean -xfd
git reset --hard
git submodule foreach --recursive git reset --hard
git submodule update --init --recursive

在如何推送子模块的更改?——在包含子模块的仓库中,

假设存在仓库A和B,并且仓库A中使用submodule来引用仓库B。

pic

TODO: git subtree对git submodule是更好的替代吗?

11 git bash example

FAQ