标签:
1.创建分支
建立分支是你创建代码的独立版本的动作,独立于你的主干分支。默认地,每次你提交到Git的文件都会被储存到“master(主干)”分支。
现在我们来说说,你想要向项目里添加一个功能,但你想要能够回滚到现在版本,以防出现差错,或者你决定要放弃这个功能。这就是你创建分支的时候了。
创建并同时切换到你新建的分支命令:
git checkout -b new_feature
或者,你可以先创建一个分支然后手动切换:
git branch new_feature
git checkout new_feature
2.查看当前branch状态
git status
3.添加当前branch的代码修改到本地
git add *
4.查看版本的log记录
git log
5.查看git的配置
git config --list
git config -l
user.name=xiangxinyong
user.email=xiangxinyong@huawei.com
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.url=https://git.openstack.org/openstack/murano
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.master.remote=origin
branch.master.merge=refs/heads/master
remote.gerrit.url=https://xianxinyong:CPhXYJBLzg6u@review.openstack.org/openstack/murano.git
remote.gerrit.fetch=+refs/heads/*:refs/remotes/gerrit/*
6.修改git配置项
git config --global user.name xiangxinyong
7.添加或修改git的message
添加:git commit -a -F .git/message
修改:git commit --amend -a -F .git/message
8.安装git-review
apt-get install git-review
9.添加到gerrit
首先,需要登录review.openstack.org,然后在Settings -> HTTP Password里,生成一个HTTP密码,应该是一个大小写加数字的随机字符串。
git remote set-url gerrit https://username:http-password@review.openstack.org/openstack/nova.git命令把ssh修改成https方式,当然也可以用http
git remote add gerrit https://username:http-password@review.openstack.org/openstack/nova.git
备注:上面字符串中的用户名/密码改成你的gerrit用户名和上一步生成的HTTP密码。
标签:
原文地址:http://www.cnblogs.com/edisonxiang/p/4668195.html