Garden
2023-11-13
```bash git clone <repository_url> ```
2023-09-13
doc:: [Git Large File Storage](https://git-lfs.com/)
2023-09-01
- 查看配置: `git config --list` - 全局:`--global` - 系统:`--system` - 仓库:`...
- 关联远程仓库: `git remote add origin https://github.com/immwind/x.git`
2023-07-13
创建和切换分支。
- 推送:push - 强制:push -f - 指定分支:push [branch name]:[remote branch name](远程分支...
- 暂存:stash - 查看:stash list - 恢复:stash apply - stash apply stash@{2} - 恢复并删...
- 切换指定分支:switch {分支名} - 新建:switch -c {分支名}