git自动上传脚本及基本代码】的更多相关文章

git_auto.bat git add . git add -A git add -u git commit -m "text" git pull --rebase origin master git push origin master 设置基础信息 设置用户名:git config --global user.name "Your name" 设置邮箱:git config --global user.email "Your email"…
创建脚本lazygit.sh #!/bin/bash # 一次性处理git提交 #branch_name=`git symbolic-ref --short -q HEAD` branch_name=$(git symbolic-ref --short -q HEAD) git add . git commit -m "$1" git push origin "$branch_name" 赋予可执行权限 chmod +x lazygit.sh 有了这个脚本,就方便多…
安装jsonpear install pecl/json 一.bpcs_uploader下载和使用: 1.下载地址:http://oott123.github.com/bpcs_uploader/ 2.系统要求:Linux (or cygwin) with php & curl installed.3.使用方法:chmod +x bpcs_uploader.php./bpcs_uploader.php 4.由于VPS上安装的php可能存在于各种地方,因此运行很可能不正常.请以使用which ph…
#!/usr/bin/env python import os import subprocess import sys import time gitconfig = { 'cwd': './blog/public', 'git': { 'github': ['git@github.com:akkuman/akkuman.github.io.git', 'master'], 'coding': ['git@git.coding.net:Akkuman/Akkuman.git', 'coding…
#!/bin/bash BASEDIR=/home/git/gitlab DESTDIR=/home/silence/backups/gitlab SRCDIR=$BASEDIR/tmp/backups LOGFILE=$DESTDIR/gitback.log #####begin backups##### ts_format=`date +%Y-%m-%d %H:%M:%S` timestamp=`date +%s` test -f $LOGFILE || touch $LOGFILE ech…
#! /bin/bash git_user_name=`git config user.name` git_user_mail=`git config user.email` branch_name="local" remote_alise=`git remote | tail -1` remote_url="" is_init=0 noupdate_filename=".gitignore" if [ -r "./.git"…
在网上搜了一堆没用找到太仔细的教程,于是花费2天时间,自己研究了下.现在分享如下: 思路:利用crontab定时去去执行git pull脚本 首先,用git clone命令将中央库的代码下载到阿里云 git clone https://username:psw@git.oschina.net/xapp/xserver.git xm 第二步.在项目目录  /opt/lampp/htdocs/xm  下创建一个脚本 xm-pull.sh ,内容如下: #!/bin/bash cd /opt/lamp…
GIT分支管理模型 link: git-branching-model 主分支(Main branches) 项目两个常驻分支: master 主干分支(锁定),仅用于发布新版本,平时不能在上面干活,只做代码合并.以及打标记(git tag). 理论上,每当对 master 分支有一个合并提交操作,我们就可以使用 Git 钩子脚本来自动构建并且发布软件到生产服务器. develop开发分支(非锁定),平时干活的地方.每当发版时,需要被合并到 master.对于简单的项目而言,这样的分支模型已经够…
转自http://git-scm.com/book/zh/Git-%E5%B7%A5%E5%85%B7-%E9%87%8D%E5%86%99%E5%8E%86%E5%8F%B2    重写历史 很多时候,在 Git 上工作的时候,你也许会由于某种原因想要修订你的提交历史.Git 的一个卓越之处就是它允许你在最后可能的时刻再作决定.你可以在你即将提交暂存区时决定什么文件归入哪一次提交,你可以使用 stash 命令来决定你暂时搁置的工作,你可以重写已经发生的提交以使它们看起来是另外一种样子.这个包括…
使用Gitosis搭建Git服务器 作者: JeremyWei | 可以转载, 但必须以超链接形式标明文章原始出处和作者信息及版权声明 网址: http://weizhifeng.net/build-git-server-with-gitosis.html Git 1.安装gitosis 首先是获取gitosis(这里假设你已经安装过git): git clone git://github.com/res0nat0r/gitosis.git 接下来安装gitosis: sudo python s…