3 Комити bad841b6aa ... 33aa922f32

Аутор SHA1 Порука Датум
  Christian Marian - Work Dell 33aa922f32 test пре 1 месец
  Christian Marian - Work Dell 754431f8ce adaugare makefile on base dir пре 1 месец
  Christian Marian - Work Dell f736aa364c Modificare Makefile si README.md пре 1 месец
2 измењених фајлова са 32 додато и 0 уклоњено
  1. 24 0
      Makefile
  2. 8 0
      README.md

+ 24 - 0
Makefile

@@ -0,0 +1,24 @@
+commit:
+	
+	@read -p "Enter commit message:" msg; \
+	git add . && git status && sleep 1 && git commit -m "$$msg"
+
+sync: pull push
+
+push:
+	@git push origin master
+
+pull:
+	@git pull --rebase origin master
+
+all: commit sync
+
+help:
+	@clear
+	@echo "Comenzi disponibile: "
+	@echo "     pull -  ia ultimele modificare din repository"
+	@echo "     commit - adauga in repository modificarile"
+	@echo "     push -  pune toate modificarile in repository"
+	@echo "     all  -  commit pull push"
+	
+

+ 8 - 0
README.md

@@ -0,0 +1,8 @@
+### GIT COMMANDS
+
+Clones the git repository
+
+```
+git clone https://git.linuxit.ro/turos.robert/mynotes.git
+```
+