美文网首页
日常整理---git常用命令(持续更新...)

日常整理---git常用命令(持续更新...)

作者: 早起的月亮 | 来源:发表于2021-09-17 17:00 被阅读0次

\color{#00dddd}{模拟控制台输出内容}

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 新建并切换分支

场景一:已知代码所在仓库,把代码拉到本地

\color{#00dddd}{1.文件夹初始化}

git init

\color{#00dddd}{2.把远程仓库里面的代码拉到本地}

/**
* @method git clone <https>
* @params https:远程地址
*/
git clone https 

场景二:仓库关联

\color{#006666}{未有仓库关联:3}

\color{#006666}{已有仓库需更换:1 -> 2 -> 3}

\color{#00dddd}{1.查看关联的仓库}

git remote -v

\color{#00dddd}{2.移除仓库关联。对应命令格式:}

/**
*  remark 移除仓库myOrigin的关联
* @method git remote remove <name>
* @param name:  myOrigin
*/

git remote remove myOrigin 

\color{#00dddd}{3.连接远程仓库。}

/**
* @method  git remove add <name> <https>
* @param name:  myOrigin 是你要自定义到本地的远程连接的name, 也就是查看关联的仓库中将会输出的name 
* @param https: https    远程库地址
*/

git remote add myOrigin https  

场景三:多人(单人多地)共同开发,更新仓库代码

\color{#00dddd}{1.暂存代码}

git add .

\color{#00dddd}{2.提交到本地}

/**
* @method git commit -m <remark>
* @param remark 是此次的提交备注信息,方便后期代码回退
*/
git commit -m 'fix -----'

\color{#00dddd}{3.拉取线上最新的代码}

/**
*@method git pull <origin> <branchName>
*@param origin        是关联的仓库名。
*@param branchName    分支名 
*/
git pull myOrigin master

\color{#00dddd}{4.处理冲突}

\color{#00dddd}{5.更新到仓库里}

/**
*@method git push -u <origin> <branchName>
*@param origin        你关联仓库是定义的仓库名。
*@param branchName    分支名 
*/
git push -u myOrigin master 



\color{orange}{以上内容若有理解不正确或者是错误的,还望大佬们指出来,感谢!!!}

相关文章

网友评论

      本文标题:日常整理---git常用命令(持续更新...)

      本文链接:https://www.haomeiwen.com/subject/maufgltx.html