text GIT流程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text GIT流程相关的知识,希望对你有一定的参考价值。

git clone ssh://john@example.com/path/to/my-project.git
cd my-project
/*Push process*/
git checkout develop
git checkout -b backendproject
git status
git add "project name"
git commit -m "first commit backend"
git push origin backendproject

git push -f origin <branch>// Forzar


/**/
//pasar cambios de un branch a otro
git checkout develop
git rebase dev
/**/
git checkout develop
git pull origin develop
/**/
//delete branch
git branch -d <nameBranch>

以上是关于text GIT流程的主要内容,如果未能解决你的问题,请参考以下文章

text Git工作流程

text git的基本工作流程

text Git工作流程配置

git开发流程

[Git ] Git 使用规范流程

Git 工作流程