#git

 

2023-11-13

clone

```bash git clone <repository_url> ```

2023-09-13

git-lfs

doc:: [Git Large File Storage](https://git-lfs.com/)

2023-09-01

config

- 查看配置: `git config --list` - 全局:`--global` - 系统:`--system` - 仓库:`...

2023-09-01

remote

- 关联远程仓库: `git remote add origin https://github.com/immwind/x.git`

2023-07-13

checkout

创建和切换分支。

2023-07-13

push

- 推送:push - 强制:push -f - 指定分支:push [branch name]:[remote branch name](远程分支...

2023-07-13

stash

- 暂存:stash - 查看:stash list - 恢复:stash apply - stash apply stash@{2} - 恢复并删...

2023-07-13

switch

- 切换指定分支:switch {分支名} - 新建:switch -c {分支名}