-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpush.sh
More file actions
executable file
·74 lines (56 loc) · 2.04 KB
/
Copy pathpush.sh
File metadata and controls
executable file
·74 lines (56 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/bash
#
# Copyright (C) 2022 Mahmoud Mohamed (00xWolf) <https://github.com/mmsaeed509>
# LICENSE © GNU-GPL3
#
# you can run script with 2 arguments (your commit comment)
# ./push.sh -m "yourCommit"
#
# a simple script to push your commits to GitHub #
## ------------ COLORS ------------ ##
# Reset #
Color_Off='\033[0m' # Text Reset
# Regular Colors #
Black='\033[0;30m' Red='\033[0;31m' Green='\033[0;32m' Yellow='\033[0;33m'
Blue='\033[0;34m' Purple='\033[0;35m' Cyan='\033[0;36m' White='\033[0;37m'
# Bold #
BBlack='\033[1;30m' BRed='\033[1;31m' BGreen='\033[1;32m' BYellow='\033[1;33m'
BBlue='\033[1;34m' BPurple='\033[1;35m' BCyan='\033[1;36m' BWhite='\033[1;37m'
# Underline #
UBlack='\033[4;30m' URed='\033[4;31m' UGreen='\033[4;32m' UYellow='\033[4;33m'
UBlue='\033[4;34m' UPurple='\033[4;35m' UCyan='\033[4;36m' UWhite='\033[4;37m'
# Background #
On_Black='\033[40m' On_Red='\033[41m' On_Green='\033[42m' On_Yellow='\033[43m'
On_Blue='\033[44m' On_Purple='\033[45m' On_Cyan='\033[46m' On_White='\033[47m'
echo ""
echo -e "${BCyan}#############################${Color_Off}"
echo -e "${BCyan}# Git Push Script #${Color_Off}"
echo -e "${BCyan}#############################${Color_Off}"
# get branch name (e.g master, main, etc... ) #
Branch=$(git branch --show-current)
echo -e "\n${BRed}[*] Your Current Branch : ${BYellow}${Branch}${Color_Off}"
# get new updates if it founded #
echo -e "\n${BPurple}[+] Updating Repo... \n${Color_Off}"
git pull
echo -e "\n${BPurple}[+] Adding new changes to the repo... \n${Color_Off}"
git add --all .
if [ "$1" == "-m" ];
then
# commit changes#
echo ""
git commit -m "$2"
else
# read commit comment from user #
echo ""
echo -e "${BPurple}##################################${Color_Off}"
echo -e "${BPurple}# Write your commit comment! :- #${Color_Off}"
read yourCommit
# commit changes#
echo ""
git commit -m "$yourCommit"
fi
# push to repo #
echo ""
git push -u origin $Branch
# D O N E! #
echo -e "\n${BGreen}[✔] D O N E \n${Color_Off}"