当前位置:网站首页>Submit local warehouse and synchronize code cloud warehouse
Submit local warehouse and synchronize code cloud warehouse
2022-04-23 17:47:00 【Sanxiaochi 513】
1. Open a new terminal
2. Check the status ( The new revision is red )
git status
3. Add all to staging area
git add .
4. Check the status again ( Will turn green )
git status
5. Submit to local warehouse
git commit -m " Descriptive text "
6. View branches
git branch
7. Switch to main branch master
git checkout master
8. Look at the branches again
git branch
9. Merging branches
git merge Branches to merge
10. Remote push
git push
Push new branches to the code cloud :
First switch to the branch to be pushed , How to execute the following commands
git push -u origin Branch name
版权声明
本文为[Sanxiaochi 513]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204230550325504.html
边栏推荐
- Generating access keys using JSON webtoken
- 958. 二叉树的完全性检验
- 常用SQL语句总结
- 31. Next arrangement
- uni-app黑马优购项目学习记录(下)
- In JS, t, = > Analysis of
- The method of changing a value in the array and a value in the object of wechat applet
- 2022 tea artist (primary) examination simulated 100 questions and simulated examination
- Index: teach you index from zero basis to proficient use
- C1小笔记【任务训练篇一】
猜你喜欢
随机推荐
Read software engineering at Google (15)
Error in created hook: "referenceerror:" promise "undefined“
MySQL进阶学习之SQL优化【插入,主键,排序,分组,分页,计数】
41. 缺失的第一个正数
Comparison between xtask and kotlin coroutine
Halo 开源项目学习(二):实体类与数据表
为什么有些人说单片机简单,我学起来这么吃力?
On the method of outputting the complete name of typeID from GCC
嵌入式系统中,FLASH中的程序代码必须搬到RAM中运行吗?
31. Next arrangement
vite配置proxy代理解决跨域
古代埃及希腊,数学用的什么进制
The system cannot be started after AHCI is enabled
编译原理 求first集 follow集 select集预测分析表 判断符号串是否符合文法定义(有源码!!!)
Flask项目的部署详解
读《Software Engineering at Google》(15)
JVM class loading mechanism
102. Sequence traversal of binary tree
Double pointer advanced -- leetcode title -- container with the most water
JS implementation private attribute









