git 常用命令 创建查看删除分支,创建查看删除tag等

1. git 文档

https://github.com/progit/progit/blob/master/zh/02-git-basics/01-chapter2.markdown

https://github.com/progit/progit/tree/master/zh

http://www.uml.org.cn/pzgl/201204285.asp

如果是windows操作系统,可以装可视化的版本控制器:小乌龟。这样的话就不用敲git命令了。小乌龟安装配置如下:

http://blog.chinaunix.net/uid-25806493-id-3319781.html

http://my.oschina.net/longxuu/blog/141699

2. 常用命令: branch、tag、 pull、fetch

## branch

git branch                        /*查看本地分支*/
git checkout -b daily/1.0.0   /*签出新分支*/
git checkout daily/1.0.1      /*切换到其他分支*/
git push origin daily/1.0.0   /*push到远程分支*/
git branch -d daily/1.0.0   /*删除本地分支*/
git push origin --delete daily/1.0.0 /*删除远程分支*/
删除也可以这样:git push origin :branch-name

## tag

git tag  /*查看本地tag*/
git tag -d publish/1.0.0   /*删除本地tag*/
git push origin --delete tag publish/1.0.0 /*删除远程tag*/

##合并远程分支到本地分支

git fetch origin daily/1.0.0  /*获取远程分支*/
git merge origin daily/1.0.0  /*将本地分支与远程分支合并*/
git pull origin daily/1.0.0     /*获取并合并远程分支到本地分支*/

注意:

git pull 相当于是从远程获取最新版本并merge到本地

在实际使用中,git fetch更安全一些
因为在merge前,我们可以查看更新情况,然后再决定是否合并

3. git 常用步骤

  • 执行 git init
  • git checkout -b daily/3.0.0       /*签出新分支*/
  • git add src/test.js                  /*添加到暂存区*/
  • git commit -m "你的提交信息"
  • git merge master                   /*合并分支,可以不做,如果有其它版本的修改,要merge*/
  • git push -u origin daily/3.0.0
  • git tag publish/3.0.0              /*打tag*/
  • git push -u origin publish/3.0.0 发布tag
  • git pull origin daily/1.0.0         /*合并远程分支和本地分支*/
时间: 2024-10-27 08:37:44

git 常用命令 创建查看删除分支,创建查看删除tag等的相关文章

Git常用命令和场景(三)--版本差别查看

代码更新上线前,需要进行代码评审和走查,对于git,主要是查看现行版本和线上版本代码的差别,即使用git diff. 首先,还是查看程序版本,git log [plain] view plaincopy [[email protected] my]$ git log commit d87f3ea30f8e1a31ef26523c43d17237e4b7285c Merge: bf468f2 2e47641 Author: lixinglei <[email protected]> Date: 

windows下安装git并创建一个仓库,git常用命令

转载于:http://www.cnblogs.com/nemotan/p/4655498.html 一.windows安装git 1.下载:http://msysgit.github.io/,下载之后直接安装,打开gitbash 2.配置用户名和邮箱: $ git config --global user.name "Your Name" $ git config --global user.email "[email protected]" 3.新建一个文件夹并执

github创建远程仓库和git常用命令

git创建远程仓库 首先到github页面上创建仓库(repository)如下: 然后初始化文件夹为仓库,并提交到远程仓库,如下: [[email protected] aa]# git init Initialized empty Git repository in /data/mydata/aa/.git/ [[email protected] aa]# git add . [[email protected] aa]# git commit -m "first commit"

git常用命令符

全局配置 $ git config --global user.name "姓名" 告诉git你是谁 $ git config --global user.email "[email protected]" 告诉git怎么联系你 如果注册了 github 账号,邮箱最好和 github 账号统一 $ git config -l 查看配置信息初始化代码仓库 $ git init 初始化代码库 $ git add . 将所有变化添加到暂存区 $ git commit -

(小组)Git 常用命令整理

Git 常用命令整理 取得Git仓库 初始化一个版本仓库 git init Clone远程版本库 git clone [email protected]:wordpress.git 添加远程版本库origin,语法为 git remote add [shortname] [url] git remote add origin [email protected]:wordpress.git 查看远程仓库 git remote -v 提交你的修改 添加当前修改的文件到暂存区 git add . 如果

Git 常用命令集锦

远程仓库相关命令 克隆远程仓库:git clone git://github.com/jquery/jquery.git 查看远程仓库:git remote -v 添加远程仓库:git remote add [name] [url] 删除远程仓库:git remote rm [name] 修改远程仓库:git remote set-url --push [remoteName] [newUrl] 拉取远程仓库:git pull [remoteName] [remoteBranchName]:[l

git常用命令及技巧

强推,即利用强覆盖方式用你本地的代码替代git仓库内的内容 git push -f git fetch --prune  #这样就可在本地删除在远程不存在的branch man git-fetch --prune After fetching, remove any remote tracking branches which no longer exist on the remote. -t, --tags Most of the tags are fetched automatically

Git 常用命令速查

一. Git 常用命令速查 git branch 查看本地所有分支 git status 查看当前状态 git commit 提交 git branch -a 查看所有的分支 git branch -r 查看远程所有分支 git commit -am "init" 提交并且加注释 git remote add origin [email protected]1.119:ndshow git push origin master 将文件给推到服务器上 git remote show or

Git 常用命令大全

Git 是一个很强大的分布式版本控制系统.它不但适用于管理大型开源软件的源代码,管理私人的文档和源代码也有很多优势. Git常用操作命令: 1) 远程仓库相关命令 检出仓库:$ git clone git://github.com/jquery/jquery.git 查看远程仓库:$ git remote -v 添加远程仓库:$ git remote add [name] [url] 删除远程仓库:$ git remote rm [name] 修改远程仓库:$ git remote set-ur

Git常用命令(转)

目前开发的新项目使用的版本控制工具基本用的都是Git,老项目用的还是Svn,网上Git资源也很多,多而杂.我整理了一份关于Git的学习资料,希望能帮助到正在学习Git的同学. 一. Git 命令初识 在正式介绍Git命令之前,先介绍一下Git 的基本命令和操作,对Git命令有一个总体的认识 示例:从Git 版本库的初始化,通常有两种方式: 1)git clone:这是一种较为简单的初始化方式,当你已经有一个远程的Git版本库,只需要在本地克隆一份 例如:git  clone  git://git