`

git版本控制器简单使用

git 
阅读更多

Git Usage

 

1. Checkout source code

 $> git clone git@gitserver:job.git  (git@gitserver.xxxx.com:job.git)
 
 # config git with your name and email 
 $> git config --global user.name  "your real name" 
 $> git config --global user.email "your company email address" 
 
 # config reviewboard url  
 $> git config reviewboard.url http://xxxxxx.com 
 
 # install code review tool 
 $> sudo yum install RBTools
 $> sudo easy_install -U RBTools  

2. Make changes and submit a patch

 $> git pull --rebase # get latest code from server to apply to current branch  
 $> ... edit your files...
 $> git status # verify all changes 
 $> git diff # carefully check whether all changes are valid or not 
 $> git commit -am "the message of changes" 
 $> git format-patch -k -1 # pust last commit in local tree to a patch 

3. Create a branch to do development

 $> git checkout -fb develop origin/develop #  develop to track original develop
 $> git checkout -fb bug<num> origin/develop # create a feature or bug branch based on develop
  
 $> ... edit your files   
 # ready to checkin
 $> git add <files to checkin> 
 $> git commit -m "message" 
  
 # some other developers certainly have updated the code. pull that first and do rebase on mydevelop branch 
 # first go into develop branch for quick forward (assume there was NO change in develop branch)
 $> git checkout develop; git pull --rebase
 
 # if there are changes, do rebase on bug<num> 
 $> git checkout bug<num>; git rebase develop 
 $> ... fix any conflict during rebase 
  
 # submit for review 
 $> post-review --tracking-branch=origin/develop 
 # if post review to existing review request, do:
 $> post-review --diff-only -r <existing review id> --tracking-branch=origin/develop
  
 # after review shows no problem merge back to develop 
 $> git checkout develop; git merge --squash bug<num>; 
 # squash will merge a few commit into one. If there is only one commit, squash is not needed 
 
 # if --squash is used (combine a few commits from bug branch into one commit), need to run git commit again with real message 
 $> git commit -m "real message for the bug" 
 # before final push, do rebase pull again to make sure things are clean 
 $> git pull --rebase
 
 # if it's good to go, run push 
 $> git push
 
 # delete this old branch
 $> git branch -d bug<num> # delete this bug branch 
 
 

4. Revert a change

 $> git checkout -- <file> # if file has local changes but no confilict 
 $> git checkout HEAD <file> # if a file has conflict 

5. Revert a commited change but not in server

 $> git reset --soft HEAD^  # revert to prior the commit and keep the local change 
 $> git reset --hard HEAD   # discard everything in last commit 

6. Revert a change in server

 $> git revert HEAD 

7. Apply a patch

 $> git apply --stat <patch file>  # check status of the patch 
 $> git apply --check <patch file> # dry-run 
 $> git apply --apply <patch file> # real deal 
 
 # if the patch has signoff information, do: 
 $> git am --signoff --whilespace=fix <patch file>

8. Remove a file

 $> git rm <file name> 

9. Undo a commit and redo

 $> git commit ...
 $> git reset --soft HEAD^  # revert back to prior stage 
 $> edit other files 
 $> git add ....    
 $> git commit -c ORIG_HEAD
 This is most often done when you remembered what you just committed is incomplete,
 or you misspelled your commit message, or both. Leaves working tree as it was before "reset".
 
 Make corrections to working tree files.
 Stage changes for commit.  "reset" copies the old head to .git/ORIG_HEAD;
 redo the commit by starting with its log message. If you do not need to edit the message further, you can give -C option instead.

10. Recovering from a bad git-rebase

 $> git checkout bug123
 $> git reflog 
 # if the branch bug123 has bad rebase, and want to return to prior rebase state, do:
 $> git reset --hard head@{1}
分享到:
评论

相关推荐

    git版本控制器

    Git是一款强大的分布式版本控制系统,由Linus Torvalds在2005年为Linux内核开发而创建。它被广泛应用于软件开发,特别是在开源社区,因为它提供了高效、可靠的代码管理和协作功能。Git允许团队成员各自在本地工作,...

    git版本控制系统1

    【Git 版本控制系统介绍】 Git 是一种分布式版本控制系统,由 Linux 内核的创始人林纳斯·托瓦兹于2005年开发,最初是为了更有效地管理 Linux 内核的开发。Git 的设计目标是速度、数据完整性以及支持非线性开发模式...

    Git版本管理用法详解

    比如可以使用JIRA进行项目管理,Trac进行任务跟踪,而Git作为版本控制系统,使得整个开发流程更加高效和透明。 总的来说,Git由于其强大的版本管理功能和灵活的工作流支持,已经成为软件开发中不可或缺的工具。对于...

    项目版本控制器git资源

    总结起来,Git作为项目版本控制器,是软件开发中的关键工具,它使得代码版本管理变得简单高效。与GitHub的结合,进一步增强了团队协作和开源社区的互动。理解和熟练掌握Git及其与GitHub的使用,对于任何IT从业者都是...

    git安装包 分布式版本控制

    6. 强大的命令行工具:Git的命令行界面提供了丰富的命令,通过简单的指令就能完成复杂的版本控制操作。此外,还有许多图形化界面工具(如SourceTree、GitHub Desktop等)供不熟悉命令行的用户使用。 7. 协同工作:...

    Git使用整理

    Git版本控制器,简单使用Git版本控制器的整理

    分布式版本控制系统-Git详解

    ### 分布式版本控制系统-Git详解 #### 版本控制的发展历程 版本控制技术随着软件开发的需求和技术的进步不断发展。从最初的本地版本控制系统到后来的集中式版本控制系统,再到现在的分布式版本控制系统,每一步...

    Git window下的版本控制工具

    Git是一款强大的分布式版本控制系统,尤其在开源社区中广泛使用,对于Android源码的管理非常得心应手。在Windows环境下,Git提供了图形化的客户端工具,使得开发者能够在Windows操作系统上便捷地进行版本控制操作。...

    版本控制Git安装包64位安装包git2.0以上

    Git是当今最流行的分布式版本控制系统,广泛应用于软件开发和项目管理。Git的64位安装包确保了在64位操作系统上的高效运行,而Git-2.27.0是这个压缩包中提供的具体版本,它包含了最新的特性和优化。 Git的安装过程...

    Git构建分布式版本控制器教程.txt打包整理.zip

    Git构建分布式版本控制器教程 Git是一款强大的开源分布式版本控制系统,由Linus ...希望这个教程能帮助你更好地理解和使用Git构建分布式版本控制器。在实际操作中,不断实践和探索,你会更加熟悉Git的强大功能。

    Git for Windows 2017 最新版,Git-2.15.0

    Git for Windows 2017 最新版,Git-2.15.0 是Git的Windows适配版本,它为Windows用户提供了完整的Git功能,并且优化了在Windows环境下的使用体验。Git是一个分布式版本控制系统,由Linux之父Linus Torvalds开发,...

    git的使用说明

    Git 的起源可以追溯到2005年,当时 Linux 内核项目的版本控制系统 BitKeeper 被其开发商收回了免费使用权,这导致了 Linux 开源社区需要寻找一个新的解决方案。由 Linux 的创始人 Linus Torvalds 领导的一群开发者...

    SVN和Git简单使用文档

    **SVN(Subversion)与Git是两种广泛使用的版本控制系统,它们在软件开发过程中起着至关重要的作用。本文将深入探讨这两个工具的基本概念、安装、配置以及日常使用方法。** ### SVN(Subversion) **1. SVN简介** ...

    git-2.19.2.zip

    Git是世界上最流行的分布式版本控制系统,广泛应用于软件开发和项目协作中。Git-2.19.2是Git的特定版本,此版本包含了自2.19.1以来的一系列更新和改进,旨在优化性能,增强功能,并修复已知的问题。在本篇中,我们将...

    持续集成-Git 常见的版本控制系统及比较 cvs,svn,git都是版本控制系统 腾讯 tapd、百度 icafe、阿里

    ### 持续集成与Git:版本...通过上述介绍,我们了解了版本控制的基本概念、几种常见的版本控制系统之间的区别,以及如何使用Git来管理和协作开发项目。这些基础知识对于任何从事软件开发工作的人员来说都是非常重要的。

    mplab中git的用法.pdf

    mplab X是Microchip公司官方提供的集成开发环境,支持多种微控制器的程序开发,同时git作为一款成熟的分布式版本控制系统,已经被广泛地运用在软件和硬件开发项目中,用于代码的版本控制和历史记录的维护。...

    GIT软件安装和使用说明书

    Git是一款分布式版本控制系统,它使得开发者能够有效地管理代码版本,特别是在团队协作开发中,Git能够帮助跟踪每一个修改,合并代码,回滚到历史版本,并确保代码的安全性。本压缩包包含Git的安装程序(Git-2.17....

    git v2.36.1 64位 Windows版本

    8. **协作与版本控制**:Git的核心特性是强大的分支和合并机制,使得团队协作变得简单。新版本可能对这些功能进行了优化,使得多人协同工作更加高效,减少了冲突的产生。 9. **持续集成/持续部署(CI/CD)**:Git常...

    目前最新版本的git Git-2.38.0-64-bit.zip

    安装过程中,用户可以选择各种配置选项,如Git的默认编辑器、是否使用SSL验证、是否设置Git Bash为默认的终端等。这些设置将直接影响到Git在用户环境中的行为。 redme.txt文件通常是安装或软件包的简要说明,可能会...

    git官网下载版本Git-2.10.2 64位

    Git是分布式版本控制系统,由林纳斯·托瓦兹(Linus Torvalds)为Linux内核开发而创建,后来成为了全球软件开发者的必备工具。Git-2.10.2 64位是该系统的一个特定版本,适用于64位操作系统。在本文中,我们将深入...

Global site tag (gtag.js) - Google Analytics