More work

This commit is contained in:
Benjamin Rosseaux 2022-08-07 20:21:03 +02:00
commit d3aeabef52
4 changed files with 15 additions and 0 deletions

3
gitcommitpush Normal file
View file

@ -0,0 +1,3 @@
#!/bin/sh
git commit -am "More work"
git push

4
gitcommitpush.bat Normal file
View file

@ -0,0 +1,4 @@
@echo off
call git commit -am "More work"
call git push
rem --set-upstream origin master

4
gitforceupdate Normal file
View file

@ -0,0 +1,4 @@
#!/bin/sh
git stash save
git pull
git stash drop

4
gitforceupdate.bat Normal file
View file

@ -0,0 +1,4 @@
@echo off
call git stash save
call git pull
call git stash drop