Begin using git
- First thing first, you can easily install git in all 3 mainstream OS, Windows, Linux, OSX.
Get windows installer on https://git-for-windows.github.io/.
Note that in Windows, the official git tool was called "git for windows" as well as msysgit. They're aimed at the same thing.
- Git provide a command tool named git config for environment configuration.
You should configure some basic information at least for better using experience.
Editor & Merge tool will be need other stand alone tools, e.g. gvim, kdiff3, etc.
Here we do not configure external editor but get the kdiff3 right here http://sourceforge.net/projects/kdiff3/files/latest/download?source=files.
- User Information
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
- Editor
$ git config --global core.editor gvim
- Merge tool
Say we're using kdiff3 in windows for Comparison and merge branch.
$ git config --global merge.tool kdiff
$ git config --global mergetool.kdiff3.path "your path to kdiff3.exe"
- PS: the configuration could be list using below commands:
$ git config --list
Or if you need to check the value of a configuration, use:
$ git config user.name
- As sometimes you will need to clone a remote repository, and you're trying to use the SSH way for remote operations. It's time for some SSH stuffs.
- Check whether your ssh keys exists:
$ ls ~/.ssh
There should be text files similar to below, which contains the public key & end with your email.
id_dsa.pub
id_rsa.pub
- Generate your new ssh keys:
$ ssh-keygen -t rsa -b 4096 -C "your-email@example.com"
- Ensure ssh-agent is enabled:
# start the ssh-agent in the background
$ ssh-agent -s
# Agent pid 59566 - Add your SSH key to the ssh-agent:
$ ssh-add ~/.ssh/id_rsa
- Add your SSH key to your account, copy the whole public key and paste to your remote Git repository server such as GitHub, GitLab, etc.
$ clip < ~/.ssh/id_rsa.pub
- PS: This ssh way using your private key to identify your user information, it was used when the repository URL happened to be something similar to git://example.com/repo.git.
Dance at local
- Initialize a new git repository or clone a remote repository
- Initialize locally
Change directory to your local project and then:
$ git init
$ git add *.cpp
$ git add README
$ git commit -m 'initial project version'
- Clone repository
$ git clone git://github.com/example/project.git [directory name]
This will create a directory using your [directory name] or the remote project name (If no directory name specified).
- Git status
There're 3 different status here includes changed, staged, committed.
- Untracked
By default, if you create, modified some files in your local repository, these files will get a untracked status, nothing is record in Stage Area.
$ gvim README
$ git status
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# README
nothing added to commit but untracked files present (use "git add" to track)
- Stage
Now you're going to track & stage these files, you can use git add to finish this.
These files will be committed together when you commit your changes next time.
$ git add README
$ git status
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# new file: README
Note that you can use git diff to compare your changes all the time.
$ git diff
This will compare your unstaged file with your staged area.
- Commit
You're ready to finish a period of development, now let's get a version clean and ready.
$ git diff --staged
This will compare your staged changes with the last time you committed.
$ git commit -m "Example message"
If all the needed files were tracked already, then you can also use below command to commit your changes directly without Stage files:
$ git commit -a -m "Example message"
- Remove files
- To remove files from git, you'll need command to complete this task. This is because your file records were in the staged area, and this command will help you to remove it from the Stage Area.
After deleting files, the status will become "Changed but not updated".
- Then you can use:
$ git rm filesToBeRemoved
- To just untrack some files but not remove them, you can use:
$ git rm --cached filesToBeUntracked
After that, you can just add the missing rule to the .gitignore file.
- Glob could also be used, note the \ symbol will help to achieve this feature recursively:
$ git rm \*.log
- Rename files
- Using git mv
$ git mv filename1 filename2
- Using git rm & git add, this is important when you're renamed some files already but haven't yet remove the records in git stage area.
$ mv README.txt README
$ git rm README.txt
$ git add README
- Amend the last commit
- Using --amend param, the last commit will be together with the new operations.
$ git commit -m 'initial commit'
$ git add forgotten_file
$ git commit --amend
- Unstage file & Discard changes:
$ git reset HEAD benchmarks.rb
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: README.txt
#
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: benchmarks.rb
#
Firstly the file benchmarks.rb was to be committed just like the README.txt above, but now it become a unstaged file which needed other steps.
- You can add it back to staged status or checkout to discard the changes.
$ git checkout -- benchmarks.rb
However, this is a dangerous command because it will really discard your changes, unlike some more friendly commands, i.e. stashing.
Remote repository
- Show me the verbose
$ git remote -v
#origin git://example.com/project.git
#peter git://hello.com/project.git
#lan //dell-pc/d/path/project.git
- Add remote repository
- Using git remote add to configure a new repository.
$ git remote add alias git://github.com/paulboone/ticgit.git
Once you have your remote repositories, you can specify you'll choose which repository to fetch data:
$ git fetch peter
Unpacking objects: 100% (44/44), done.
From git://github.com/paulboone/ticgit
* [new branch] master -> peter/master
* [new branch] ticgit -> pter/ticgit
- Push local commits to remote repository
- This is a straight forward command, if the branch doesn't exist in remote, the new branch will be created automatically:
$ git push [remote-name] [branch-name]
Branch Model
This is the most widely used part in git. Efficient, Clear, and works great.
- Create a new branch
$ git branch testing
- In your local, there's always a HEAD pointer point to a specified version of your working branch. That is:
- As the image says, master & testing were the two branches exist. HEAD now point to master. Because git branch will not change the working branch anyway.
- Now you're going to check out the new branch for working:
$ git checkout testing
The HEAD pointer has been redirected. And now the checkout command was used to switch branches, instead of discard changes.
- After switch and commit different things in both branches, they might look like:
This model explains why we should use branch to control our development, and how easily it is to use.
- Basic workflow of development based on git
- Firstly you've decided to work on a new feature or a bug fix, say #iss53.
$ git branch iss53
$ git checkout iss53
- Now you have below model look like:
- Some work have been done, the progress moved on:
$ git commit -m "Add something"
- But there're some urgent fix should be done now, you'll switch back to complete the hotfix:
- $ git checkout master
- $ git branch hotfix
$ git checkout hotfix
#Switched to a new branch "hotfix"
When the hotfix has been committed, it looks like:
- Now we merge the hotfix to master and push it to remote server:
- Things were moving smoothly and the hotfix can be deleted safely, and the iss53 could be keep developing again.
$ git branch -d hotfix
#Deleted branch hotfix (3a0874c).
$ git checkout iss53
$ git commit -m "other features"
- When the iss53 has been finished, just merge the iss53 into master:
$ git checkout master
$ git merge iss53
Even though the process of merge was different from the hotfix one, the git decided how to merge these two branches itself. Finding the Common ancestor, merge the commits, and create a new commit (which is a special commit named "Merge commit").
- What if there're conflict occurred when merging? At the moment, all the conflict files will be listed as "Unmerged files".
$ git mergetool
merge tool candidates: kdiff3 tkdiff xxdiff meld gvimdiff opendiff emerge vimdiff
Merging the files: index.html
Normal merge conflict for 'index.html':
{local}: modified
{remote}: modified
Hit return to start merge resolution tool (opendiff):
After that, the status will become modified again and could be committed now.
- Actually, you can also merge the master branch into your #iss53 anytime, if other's important changes are needed. And then push the local branch to the remote repository, create a merge request. Waiting for someone who has a write access right to merge your branch into master. This is an acceptable workflow as well.
$ git checkout iss53
$ git fetch origin
$ git merge origin/master iss53
$ git push origin iss53
This kind of process could be completed easier via rebase:
$ git checkout iss53
$ git rebase master
$ git push origin iss53
The rebase command will generate a clearer development history:
- Tracking branch
- A local branch checkout from remote server was called a tracking branch.
$ git checkout -b localfix origin/serverfix
Branch localfix set up to track remote branch refs/remotes/origin/serverfix.
Switched to a new branch "localfix "
The branch name can be the same as branch on server side.
$ git push origin serverfix:localfix or
$ git push origin serverfix (if the name were the same)
Begin using git的更多相关文章
- Begin using git (Part1) - Git的安装与配置
Git提供了适用于Linux, Windows, OSX的客户端, 本节以Windows为例介绍基本安装与配置. 所需工具:msysgit, kdiff3. Get windows installer ...
- Git Shell 安装版本
#!/bin/sh v1.; do echo "Begin install Git $ver."; git reset --hard git clean -fdx git chec ...
- 第七章 : Git 介绍 (下)[Learn Android Studio 汉化教程]
Learn Android Studio 汉化教程 Let’s reset even further to remove all traces of your work on the deprecat ...
- HDU 4585 Shaolin (STL)
Shaolin Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others)Total Sub ...
- 记一次git amend事故处理方案
一.问题回顾 问题是git commit --amend 引起的. 一条commit已经push到远端develop了,但是后来又在这条commit上进行了amend操作,导致这条commit的哈希码 ...
- Git使用出错:Couldn‘t reserve space for cygwin‘s heap, Win32
今天使用Git在命令行下更新代码遇到了问题,起初觉得是自己安装某软件导致冲突,从网上搜索了一下找到类似问题,成功解决问题. 错误信息如下: E:\storm-sql>git pull origi ...
- configure Git to accept a particular self-signed server certificate for a particular https remote
get the self signed certificate put it into some (e.g. ~/git-certs/cert.pem) file set git to trust t ...
- Git Learning - By reading ProGit
Today I begin to learn to use Git. I learn from Pro Git. And I recommend it which is an excellent bo ...
- 利用git+hugo+markdown 搭建一个静态网站
利用git+hugo+markdown 搭建一个静态网站 一直想要有一个自己的文档管理系统: 可以很方便书写,而且相应的文档很容易被分享 很方便的存储.管理.历史记录 比较方面的浏览和查询 第一点用M ...
随机推荐
- MySQL计算时间差
MySQL计算两个日期的时间差函数:TIMESTAMPDIFF 语法: TIMESTAMPDIFF(interval, datetime_expr1, datetime_expr2) interval ...
- Win7系统安装Centos7.0双系统(二)
4.6语言选择
- SVN中的Branches分支以及Merge 应用举例
come from: http://www.360doc.com/content/12/0816/19/1317564_230547958.shtml 创建Branch分支或者Tag标签 当按照推荐的 ...
- java和C++在多态实现上的区别
1:java中没有虚函数的概念,但是有抽 象函数的概念,用abstract关键字表示,java中抽象函数必须在抽象类中,而且抽象 函数不能有函数体,抽象类不能被实例化,只能由其子类实现抽象函数,如果某 ...
- 黄聪:C#禁止Webbrowser中的脚本错误提示,自动屏蔽弹出窗口
using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using ...
- 学习WordPress必须知道的函数(转)
WordPress是目前十分流行的独立博客程序,因傻瓜化安装和使用,其在网民中的应用已近乎普及.但也因为很多新入门的用户几乎对WordPress 程序没有任何了解,造成使用中碰到问题无法解决,求助也十 ...
- SSH登录很慢问题的解决
用ssh连其他linux机器,会等待10-30秒才有提示输入密码.严重影响工作效率.登录很慢,登录上去后速度正常,这种情况主要有两种可能的原因: 1. DNS反向解析的问题 OpenSSH在用户登录的 ...
- PLSQL_长脚本如何判断需耗时多久v.sql / v.sqltext / v.sqlarea / v.sql_plan及nohup(案例)
2014-08-27 Created By BaoXinjian
- 【Java】PrettyTime
package test; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.D ...
- ImageLoader_ _Universal-Image-Loader完全解析(一)之介绍与使用详解
转载请标明出处: http://blog.csdn.net/developer_jiangqq/article/details/50439814 本文出自:[江清清的博客] (一).前言: 已经半个月 ...