git command

简介:

下载github代码

git clone https://github.com/zhoug2020/2015.git

 

在github上创建仓库:
Create a new repository on the command line


touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/BrentHuang/MyRepo.git
git push -u origin master


在本地新建一个分支: git branch Branch1
切换到你的新分支: git checkout Branch1
将新分支发布在github上: git push origin Branch1
在本地删除一个分支: git branch -d Branch1
在github远程端删除一个分支: git push origin :Branch1   (分支名前的冒号代表删除)

直接使用git pull和git push的设置
git branch --set-upstream-to=origin/master master 
git branch --set-upstream-to=origin/ThirdParty ThirdParty
git config --global push.default matching

 

新建好的代码库有且仅有一个主分支(master),它是自动建立的。
  可以新建分支用于开发:
  git branch develop master
  新建一个叫develop的分支,基于master分支

  切换到这个分支:
  git checkout develop
  现在可以在这个develop分支上做一些改动,并且提交。
  注意:切换分支的时候可以发现,在Windows中的repository文件夹中的文件内容也会实时相应改变,变成当前分支的内容。

 

 

push方法1:

 

  现在如果想直接Push这个develop分支上的内容到github

 

  git push -u origin

 

  如果是新建分支第一次push,会提示:
  fatal: The current branch develop has no upstream branch.
  To push the current branch and set the remote as upstream, use
  git push --set-upstream origin develop
  输入这行命令,然后输入用户名和密码,就push成功了。

 

  以后的push就只需要输入git push origin

 

  

 

  

 

push方法2:

 

  比如新建了一个叫dev的分支,而github网站上还没有,可以直接:

 

  git push -u origin dev

 

  这样一个新分支就创建好了。

 

 

 

push方法3:

 

  提交到github的分支有多个,提交时可以用这样的格式:

 

  git push -u origin local:remote
  

 

  比如:git push -u origin master:master
  表明将本地的master分支(冒号前)push到github的master分支(冒号后)。
  如果左边不写为空,将会删除远程的右边分支。

 

 

 

创建分支的另一种方法

 

  用命令git checkout -b develop2 develop
  可以新建一个分支develop2,同时切换到这个分支

 

 

 

删除分支

 

  git branch可以查看所有的分支
  git branch -d develop2 将develop2分支删除

 

 

 

Clone

 

  使用git clone+github地址的方法,项目默认只有master分支。git branch也只有master

 

  要看所有的分支:git branch -a或者是git branch -r

 

  这时候要新建一个分支,叫做dev,基于远程的dev分支:git checkout -b dev origin/dev

 

 

 

加Tag

 

  git tag tagname develop
  git tag中的两个参数,一个是标签名称,另一个是希望打标签的点develop分支的末梢。

 

 

 

合并分支

 

  git checkout master

 

  先转到主分支
  git merge --no-ff develop

 

  然后把develop分支merge过来

 

  参数意义:
  不用参数的默认情况下,是执行快进式合并。
  使用参数--no-ff,会执行正常合并,在master分支上生成一个新节点。
  merge的时候如果遇到冲突,就手动解决,然后重新add,commit即可。

 

本文转自莫水千流博客园博客,原文链接:http://www.cnblogs.com/zhoug2020/p/4573287.html,如需转载请自行联系原作者
相关文章
|
6月前
|
开发工具 git
完美解决git 执行git push origin master指令 报错command not found
完美解决git 执行git push origin master指令 报错command not found
172 0
|
开发工具 git iOS开发
Mac使用brew install 安装wget工具报错 fatal: not in a git directory Error: Command failed with exit 128: git
Mac使用brew install 安装wget工具报错 fatal: not in a git directory Error: Command failed with exit 128: git
1719 0
Mac使用brew install 安装wget工具报错 fatal: not in a git directory Error: Command failed with exit 128: git
|
开发工具 git
error: could not lock config file .git/config: Permission denied/Command failed with exit 255
error: could not lock config file .git/config: Permission denied/Command failed with exit 255
396 0
|
开发工具 git
【错误记录】Git 使用报错 ( git: ‘switch‘ is not a git command. See ‘git --help‘. )
【错误记录】Git 使用报错 ( git: ‘switch‘ is not a git command. See ‘git --help‘. )
1195 0
【错误记录】Git 使用报错 ( git: ‘switch‘ is not a git command. See ‘git --help‘. )
jxy
|
开发工具 git
|
14天前
|
缓存 Java Shell
[Git]入门及其常用命令
本文介绍了 Git 的基本概念和常用命令,包括配置、分支管理、日志查看、版本回退等。特别讲解了如何部分拉取代码、暂存代码、删除日志等特殊需求的操作。通过实例和图解,帮助读者更好地理解和使用 Git。文章强调了 Git 的细节和注意事项,适合初学者和有一定基础的开发者参考。
36 1
[Git]入门及其常用命令
|
3月前
|
开发工具 git
【GIT 第二篇章】GIT常用命令
Git常用命令涵盖初始化、状态管理、提交、分支处理、远程操作等关键流程。`git init`启动本地仓库,`git clone`下载远程仓库。通过`git status`和`git diff`检查工作状态与差异。利用`git add`暂存文件,`git commit`保存更改。借助`git branch`、`git checkout`、`git merge`和`git rebase`管理分支。使用`git fetch`、`git pull`和`git push`同步远程仓库。通过`git reset`、`git revert`和`git checkout`实现版本回退。
67 0
|
1月前
|
开发工具 git
git学习四:常用命令总结,包括创建基本命令,分支操作,合并命令,压缩命令,回溯历史命令,拉取命令
这篇文章是关于Git常用命令的总结,包括初始化配置、基本提交、分支操作、合并、压缩历史、推送和拉取远程仓库等操作的详细说明。
107 1
git学习四:常用命令总结,包括创建基本命令,分支操作,合并命令,压缩命令,回溯历史命令,拉取命令
|
17天前
|
开发工具 git 开发者