The following is a simple list of information about the simple configuration of git in the Hbuilder environment:
1. Installation and use of Hbuilder egit plug-in
http://blog.csdn.net/u011871921/article/details/44238971
2.git created a local warehouse and added a file, now this local repository do not want, how to delete? And will not delete the files inside the warehouse?
You can clear the Git file under the local folder and then reinitialize the new Git repository
//删除文件夹下的所有 .git 文件 find . -name ".git" | xargs rm -Rf
Then Add,commit and other operations can be
3.git Commit Command Analysis
http://blog.csdn.net/hudashi/article/details/7664409
4.git take the remote branch to local and establish the correlation relationship track
http://blog.csdn.net/arkblue/article/details/9790129
5. Git submits the correct posture: Commit message Writing guide
Http://www.oschina.net/news/69705/git-commit-message-and-changelog-guide
6.Git new local branch associated with remote branch problem: Git branch--set-upstream
Http://www.tuicool.com/articles/vQ36Zj
Simple configuration of Git in a hbuilder environment