OSDN Git Service

Add Tools/Makefile
[eos/base.git] / Makefile
1 EOS_GIT_BACKUPSITE=/net/fs08/fs08/DataBase/EosBackup.git
2 EOS_GIT_REPOSITRY= git.sourceforge.jp:/gitroot/eos/base.git 
3
4 git-add::
5         git add Makefile
6         git add sbin
7         git add bin
8         git add src
9         git add Integration
10         git add include
11         git add env 
12         git add lib 
13         git add util
14
15 git-commit::
16         echo "Message"; read MESSAGE; echo $$MESSAGE ; \
17         git commit -m "$$MESSAGE"
18
19
20 git-backup::
21         git push $(EOS_GIT_BACKUPSITE) master 
22
23 git-push::
24         #git push $${EOS_GIT_USER}@$(EOS_GIT_REPOSITRY) master
25         git push origin master 
26
27 git-pull::
28         #git pull $${EOS_GIT_USER}@$(EOS_GIT_REPOSITRY) master 
29         git pull origin master
30
31
32 git-init::
33         git remote add origin $${EOS_GIT_USER}@$(EOS_GIT_REPOSITRY)
34