summarylogtreecommitdiffstats
path: root/git.sh
blob: 275cdf15587c591a8b3051c4cca464eb6f7ada22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash 
############################################################################
# Author 	: 	Erik Dubois
# Website 	: 	http://www.erikdubois.be
############################################################################


mksrcinfo
git add --all .

# Committing to the local repository with a message containing the time details
curtime=$(date)
git commit -m "commit from @ $curtime"

# Push the local snapshot to a remote destination
git push -u origin master