码迷,mamicode.com
首页 > 其他好文 > 详细

Meth | 新建git项目

时间:2018-10-26 11:26:14      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:etc   push   ini   www.   kernel   获取   git pull   concepts   git fetch   

https://www.yiibai.com/git/git_basic_concepts.html

1、进入指定文件夹 git init

2、查看所有分支 git remote、git remote-v(详情)

3、添加新的远程、生成新分支  git remote add staging git://git.kernel.org/.../gregkh/staging.git

4、git pull命令用于从另一个存储库或本地分支获取并集成(整合)。git pull命令的作用是:取回远程主机某个分支的更新,再与本地的指定分支合并,它的完整格式稍稍有点复杂。

将远程存储库中的更改合并到当前分支中。在默认模式下,git pullgit fetch后跟git merge FETCH_HEAD的缩写。更准确地说,git pull使用给定的参数运行git fetch,并调用git merge将检索到的分支头合并到当前分支中。 使用--rebase,它运行git rebase而不是git merge

git pull origin next

5、git add、git commit -m ‘‘、git push origin master

Meth | 新建git项目

标签:etc   push   ini   www.   kernel   获取   git pull   concepts   git fetch   

原文地址:https://www.cnblogs.com/PlusHappy/p/9855186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!