Blogger Information
Blog 5
fans 0
comment 0
visits 18219
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
github使用
Donowan的博客
Original
1563 people have browsed it
A文件  第一步我初始化了一个项目
1. git init 
添加了一个文件 readme.md
接着把文件上传github
2. git status
    git add .
    git commit -m "first commit"
    git remote add origin https://github.com/Donowan/dream.git
    git push -u origin master
    
 3.创建一个分支(node)
 git branch 
 git branch node
 git push origin node
 
 B文件
 1.拉取分支代码(node)
 git clone -b node https://github.com/Donowan/dream.git
 2.写代码
 3.提交代码
 git status
 git add .
 git commit -m '我是负责写node分支的'  
 git pull
 git push origin node

tip:b文件 做出的修改push到node分支,不会影响master主分支,只有合并分支之后其他文件才会pull到新代码...

a文件可以继续创建分支,直至所有分支完成合并(合并之后可以在项目查看到所有分支)

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post