git一键push至github脚本

#########################################################################
# File Name: push.sh
# Author: tuzhuo
# mail: [email protected]163.com
# Created Time: 2019年09月11日 星期三 19时56分03秒
#########################################################################
#!/bin/bash

if [ $# -eq 0 ]
then
    pushmessage=`date +%Y-%m-%d`
else
    pushmessage="$*"
fi

#pushmessage=`date +%Y-%m-%d`

echo ${pushmessage}

git add -A
git commit -m "${pushmessage}"
git push origin master

脚本使用说明:

通常的用法是直接命令回车(脚本环境兼容windows和linux的git):

bash push.sh

该脚本默认的push信息是提交当天的年月日,eg:2019-10-1;

若要自定义git的push信息,只需要:

bash push [message]

eg:

bash push.sh Bob-first-push

bash push.sh Bob first push

再回车即可。

[email protected],hzau

2019-11-3

原文地址:https://www.cnblogs.com/acm-icpcer/p/11785953.html

时间: 2024-10-13 09:42:55

git一键push至github脚本的相关文章

git 将本地代码push到github

以cnblogs-scrapy.git为例介绍如何将本地代码push到github 在github上创建对应的仓库:https://github.com/hotbaby/cnblogs-scrapy.git 初始化本地仓库: $ git init 将代码添加本地仓库中: $ git add . 添加Log:$ git commit –m "Initialize commit." 添加远程仓库:$ git remote add origin https://github.com/hotb

Android Studio如何使用Git提交代码到GitHub和OsChina并解决冲突

由于本人喜爱Git,那就介绍Git,,如何和在GitHub和Oschina拉取和提交项目,并且你会学会如何解决冲突问题!!博主还是那个图片控!! 准备工作 git下载地址:Git下载 oschina注册地址:Oschina github注册地址:GitHub 1. 下载git软件 2. 注册GitHub账号和Oschina账号 3. 完成后如图1.1 和图1.2 图1.1 Git配置成功标志 图1.2 GitHub与本地AS关联成功 进行到此,才能进行下面的操作,中间我忽略了很多,那些确实很基础

eclipse中使用git提交代码到github

这里假设你已经拥有了github账号,建好了带提交的eclipse工程,进行了本地git的提交.本文只介绍在eclipse通过git插件将代码push到github 1.登录github新建repository 2.拷贝建好的地址 3.打开eclipse,这里不再叙述git插件的安装,选中要上传的工程,点击右键---> Team ---> Remote ---> Push 4.打开的窗口中进行如下设置 5.点击next进入 Source ref处选择 master [brance], 点

Git 命令总结 及 GItHub 项目推送

#今天码了一个小时左右总结了一下git的命令还有一些注意点以及如何推送自己的github仓库上. ps: 自己总结的难免出现理解或时语法上的错误[仅供参考] Git命令 #添加到暂存区 #将所有内容加到暂存区 $ git status  #查看工作区 $ git commit -m "注释"  #从暂存区存入版本区,注释内容随意填 $ git commit -a -m "注释" #从工作区存入暂存区再存入版本区 $ git remote add origin [em

把 Eclipse 中的工程 Push 到 Github(适用 Windows 平台)

今天发现一小技巧,关于如何把Eclipse的某一个Existing project push 到github服务器. Eclipse 应该是 JavaEE 版本. 在project 右键 team, git 什么的commit一下.目的是生成 local repository. 然后去打开windows版本的github客户端 tools -> options -> scan for repositories. 就找到刚刚生成的repository, 把它 push 到 github 即可.

git 提交代码到github错误处理

git push -u origin mastererror: The requested URL returned error: 403 Forbidden while accessing https://github.com/hjyoung/php-redis-in-action.git/info/refs 修改配置 vim .git/config 将配置 [remote "origin"]        fetch = +refs/heads/*:refs/remotes/ori

Git - warning: push.default is unset

今天心血来潮想要把获取窗体句柄的程序給开源了. 可在执行 git push 时看到下面的消息: warning: push.default is unset; its implicit value has changed in Git 2.0 from 'matching' to 'simple'. To squelch this message and maintain the traditional behavior, use: git config --global push.defaul

webstrom一键上传github及使用

对于webstrom是我参加it修真园时就推荐使用的,其他编辑器我也没什么使用过.读大学的时候还是比较喜欢 Notepad++. 现在说一下webstrom主要的关键点吧! 一.实现一键上传github 1.配置(ctrl+alt+s) 2.一键上传 另外这是我之前的笔记: 1.ctrl+alt+a 2.ctrl+k 调出提交修改窗口,注释几行,然后commit&push 二.实现ctrl+鼠标调节字体大小

Push to GitHub:could not resolve host: github.com

系统:Mac os x 10.11.3 操作:Push to GitHub 错误如下: git push origin ssh: Could not resolve hostname ssh.github.com: Name or service not known fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository