git简介--1--基本操作
twocode

Git基本命令

	git clone  克隆代码
	git branch 分支
	git status 当前分支及其操作记录
	git diff   代码更改记录
	git checkout  检出|切换分支
	git add     添加新建文件
	git commit -am "提示信息:提交所有修改"
	git push origin master|branch-new  推送远程分支

克隆源代码及新创建分支与合并

    ##克隆源代码
		git clone http://拉取|克隆源代码
	
    ##新创建分支与合并
		# create a new branch locally
		#新创建本地分支并切换至此分支下
		#注:养成良好的习惯,任何操作之后,切换到自己分支
		
		git branch branch-first
		git checkout branch-first
		
		# edit/add/remove files    
		# ... 
		# Commit your changes locally
		##在自己分支下,编辑修改删除文件后执行commit提交本地分支
		##若是有新建文件commit之前,先执行add fileName ,添加文件		
		
		git add fileName
		git commit -m Message
		# push changes and new branch to remote repository:
		##commit操作之后,执行push origin,推送远程分支
		
		git push origin branch-first:branch-first
		
		#merge to master
		##在自己分支推送完成后,进行本地和远程的代码运行测试
		##测试功能正常后,merge合并到master主分支
		##注意:master主分支是fina代码,保持代码无污染
		##若是多人合作项目,master合并交于一人
		##或者多人操作合并时,merge之前,pull origin master保持本地master始终为最新代码
		
		git checkout master
		git pull origin master
		git merge branch-first
		
		##此处注意,是否会有conflict,若有冲突,在编辑器中解决conflict,
		##解决完冲突后,将对应的文件执行add 操作
		##然后在分别执行commit push
		
		git commit -am "merge branch-first"
		git push origin master

这就是基本的git使用流程,可以自己在总结,好代码需要好习惯!


网友评论已关闭