home % git remote -v
myOrigin https://gitee.com/xxx/xxxx.git (fetch)
myOrigin https://gitee.com/xxx/xxxx.git (push)
action | name | origin | branchName | 操作介绍 |
---|---|---|---|---|
git init | 初始化 | |||
git clone | https: | 克隆仓库代码到本地 | ||
git add . | 暂存代码 | |||
git commit -m 'diy remark' | 提交到本地 | |||
git pull | myOrigin | master | 拉取指定分支内容 | |
git push -u | myOrigin | master | 推送本次更新 | |
git remote -v | 查看关联仓库 | |||
git remote add | myOrigin | https | 连接仓库 | |
git remote remove | myOrigin | 移除仓库关联 | ||
git branch | 查看当前所在分支 | |||
git branch -a | 查看所有分支 | |||
git checkout | dev | 切换分支 | ||
git checkout -b | hotfix | 新建并切换分支 |
场景一:已知代码所在仓库,把代码拉到本地
git init
/**
* @method git clone <https>
* @params https:远程地址
*/
git clone https
场景二:仓库关联
git remote -v
/**
* remark 移除仓库myOrigin的关联
* @method git remote remove <name>
* @param name: myOrigin
*/
git remote remove myOrigin
/**
* @method git remove add <name> <https>
* @param name: myOrigin 是你要自定义到本地的远程连接的name, 也就是查看关联的仓库中将会输出的name
* @param https: https 远程库地址
*/
git remote add myOrigin https
场景三:多人(单人多地)共同开发,更新仓库代码
git add .
/**
* @method git commit -m <remark>
* @param remark 是此次的提交备注信息,方便后期代码回退
*/
git commit -m 'fix -----'
/**
*@method git pull <origin> <branchName>
*@param origin 是关联的仓库名。
*@param branchName 分支名
*/
git pull myOrigin master
/**
*@method git push -u <origin> <branchName>
*@param origin 你关联仓库是定义的仓库名。
*@param branchName 分支名
*/
git push -u myOrigin master
网友评论