-
Notifications
You must be signed in to change notification settings - Fork 0
/
git-update.sh
executable file
·51 lines (36 loc) · 1.13 KB
/
git-update.sh
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
#!/bin/bash
#set -e
#################################################################################
# #
# #
# Opis : Skrypt do update'u git #
# : #
# Author : Maciej Młocek (thx to Eric Dubois from Arcolinux) #
# #
# #
#################################################################################
# sprawdzanie github czy wszystko aktualne (pull)
tput setaf 3
echo
echo "Sprawdzanie czy pliki różnią się od github"
tput sgr0
git pull
# Poniższa komenda wskazuje, że wszystko z folderu należy zaktualizować
git add --all .
# Dodawanie komentarza do commit
tput setaf 3
echo
echo "####################################"
echo "Wprowadź komentarz commit:"
read input
tput sgr0
# Ustawianie commit z pobranym powyżej komentarzem oraz datą
git commit -m "$input"
# Wysłanie plików na github (push)
git push -u origin main
# Komunikat końcowy
tput setaf 3
echo "################################################################"
echo "################ Zaktualizowano git #######################"
echo "################################################################"
tput sgr0