OSDN Git Service

Eos_env
[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         git add hostdepend
15
16 git-add-optional::
17         git add data
18
19 git-commit::
20         echo "Message"; read MESSAGE; echo $$MESSAGE ; \
21         git commit -m "$$MESSAGE" 
22
23 git-backup::
24         git push $(EOS_GIT_BACKUPSITE) master 
25
26 git-push::
27         #git push $${EOS_GIT_USER}@$(EOS_GIT_REPOSITRY) master
28         git push origin master 
29
30 git-pull::
31         #git pull $${EOS_GIT_USER}@$(EOS_GIT_REPOSITRY) master 
32         git pull origin master
33
34 git-init::
35         git remote add origin $${EOS_GIT_USER}@$(EOS_GIT_REPOSITRY)
36
37 git-add-tutorial::
38         git add tutorials
39