git手册
git基础操作
1 | git status # 查看git仓库状态 |
基础git管理
1 | git init # 初始化git仓库 |
git远程操作:
1 | git clone git@github.com:kuan1/test.git # 克隆远程仓库(可直接关联) |
设置git config
1 | git config --global user.name 'Your Name' # 设置git名字 |
git branch
1 | git branch # 列出分支 -a:所有 -r:远程 |
git stash
1 | git stash # 保存当前工作空间 |
git tag
1 | # 创建Tag |
配置ssh
1 | ssh-keygen -t rsa -C 'luzhongk@126.com' # 生成ssh密钥 |