git查看配置:git config --global --list
git配置:
git config --global user.name "yumlu"
git config --global user.email "yumlu@cisco.com"
git config --global core.editor=vim
git权限,添加密钥:
1) ssh-keygen(而后三次回车,即让公钥文件存放在默认位置)
2) cat ~/.ssh/id_rsa.pub
3) 复制生成的公钥(ssh-rsa…)
在git仓库里新建一个公钥,把公钥复制进去就可以:
查看log:git log
编写commit的log:git commit -m "this is your log"
修改commit log:git commit --amend
查看远程仓库信息:git remote -v
从远程仓库下载代码到本地:git clone 代码地址
切换分支:git checkout 分支名称
从当前branch新建分支:git checkout -b 新分支名称
同步远程分支到本地:git fetch
查看远程有哪些分支:git branch -a
删除远程分支:git push origin --delete <branchName>
暂存未提交的代码:git stash save "test-cmd-stash"
取出暂存的代码:git stash pop
将指定的提交(commit)应用于其他分支:git cherry-pick commidId (多个commit的话,按序多次执行该命令)
代码提交的一般步骤:
1)git add 命令可将文件添加到暂存区:git add [file1] [file2] 或者git add *
2)git commit -m "提交的描述信息" : 将暂存区中的文件提交到本地仓库中
3)git push origin <branch> 用于从将本地的分支版本上传到远程并合并
解决冲突:
1)git rebase master
2)本地解决冲突
3)git add
4)git rebase --continue
5)git push origin 分支名称 -f