//克隆到本地
git clone [email protected]:路径
//添加全部修改的文件到缓存区
git add .
//提交到本地
git commit
git commit -m "commit message"
//提交到线上
git push
//获取线上最新
git pull
Git push 失败 或者push之后 线上没有更新:
修改服务端GIT CONFIG进行如下设置:
[receive]
denyCurrentBranch = ignore
设置好了还没有完,PUSH上去你要是去测试服上查看,文件并没有更新。这时候需要用到GIT的HOOK:
感谢某某网友的无私奉献,我们不用再去手写SHELL脚本了,脚本下载地
址:https://gist.githubusercontent.com/volca/9482044/raw
/344a590af350b997db3819fa21426dfe8bc140f4/post-update;
下载到 你的项目目录/.git/hooks/,最后添加可执行权限及修改用户组:
chmod g+x 你的项目目录/.git/hook/post-update
chown www:git 你的项目目录/.git/hook/post-update
时间: 2024-10-01 02:57:32