标签: git

3 篇文章

git cherry-pick 拉取另一个远程分支的某一个提交
参考来源: https://blog.csdn.net/qq_35432904/article/details/107232691 关联远端仓库 $ git remote add target git://gitUrl 然后,将远程代码抓取到本地 $ git fetch target 获取远端仓库的master分支的提交日志 $ git log t…
Git服务器搭建
1.安装Git和SSH sudo apt-get install git sudo apt-get install ssh service ssh start 2.新建用户 sudo adduser git 3.创建登录证书 创建路径.ssh,然后创建authorized_keys文件,这里路径和文件名不能任取,该文件用于存放各个git客户端的RS…
git配置代码同步
在git仓库中hook目录下配置post-receive vi post-receive 配置内容如下 #!/bin/sh git --work-tree=/www/wwwroot/www.test.com/videoPro --git-dir=/home/git/video/videopro.git checkout -f sudo chmod …