情况1: 本地有分支dev,远程没有dev分支,要将本地dev分支提交到远程的dev分支
首先切换到dev分支: git checkout dev
检测是否有为提交内容:git status
将未提交内容添加到暂存区: git add .(或git add 具体文件名称)
将暂存区内容提交到
原文地址:https://www.cnblogs.com/fanlina/p/11002799.html
时间: 2024-10-18 14:21:36
情况1: 本地有分支dev,远程没有dev分支,要将本地dev分支提交到远程的dev分支
首先切换到dev分支: git checkout dev
检测是否有为提交内容:git status
将未提交内容添加到暂存区: git add .(或git add 具体文件名称)
将暂存区内容提交到
原文地址:https://www.cnblogs.com/fanlina/p/11002799.html