git仓库操作方法管理

2018-06-26  本文已影响20人  lookphp

1、初始化生成公钥

ssh-keygen -t rsa -C "youremail@example.com"

2、配置用户名邮箱

当前仓库配置:

git config user.name "Your Name"
git config user.email "email@example.com"

全局配置:

git config --global user.name "Your Name"
git config --global user.email "email@example.com"

3、查看配置信息

查看系统config
git config --system --list

查看当前用户(global)配置
git config --global --list

查看当前仓库配置信息
git config --local --list

4、添加远程仓库

文件夹存在的时候,新建仓库并添加远程仓库:

cd existing_folder
git init
git remote add origin git@xxx.xxx.xxx.xxx:Project/service.git
git add .
git commit
git push -u origin master

仓库存在的时候,添加远程仓库:

cd existing_repo
git remote add origin git@xxx.xxx.xxx.xxx:Project/service.git
git push -u origin --all
git push -u origin --tags

5、修改提交模板git_template

git config commit.template [模板文件名]    //这个命令只能设置当前分支的提交模板
git config commit.template git_template 

git config --global commit.template [模板文件名]    //这个命令能设置全局的提交模板,注意global前面是两杠 
git config --global commit.template git_template

6、no matching key exchange method found算法不匹配提示解决方案

问题提示:

Unable to negotiate with 192.168.4.28 port 19428: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

解决方案:

windows:

cd ~/.ssh/
vim config

linux:

/etc/ssh/ssh_config
vim ssh_config
Host *.*.*.*  
    KexAlgorithms +diffie-hellman-group1-sha1

---------------------------------------------------分割线------------------------------------------------------

7、gerrit change-id第一次提交时不成功的解决办法

>gitdir=$(git rev-parse --git-dir); scp -p -P 29418 user@xxx.xxx.xxx.xxx:hooks/commit-msg ${gitdir}/hooks/
>git commit --amend
上一篇下一篇

猜你喜欢

热点阅读