Skip to content

haoshilei/GitStudy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 

Repository files navigation

Git is a distributed version control system.
Git is a free software distributed under the GPL...

git checkout -b dev
Creating a new branch is quick.

$ git checkout master
$ git merge dev

Creating a new branch is quick & simple.
$ git checkout -b feature1
$ git checkout master
$ git merge feature1
$ git branch -d feature1
$ git checkout -b dev


$ git checkout -b issue-101
$ git checkout master
$ git merge issue-101
$ git branch -d issue-101
$ git stash
$ git remote -v
$ git push origin master

http://stackoverflow.com/questions/5827944/git-error-on-commit-after-merge-fatal-cannot-do-a-partial-commit-during-a-mer

About

you know it

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors