-
Notifications
You must be signed in to change notification settings - Fork 7
/
escs.sh
38 lines (34 loc) · 1 KB
/
escs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
##############################################################################
# Clone lax repository.
cd ~/projects
git clone git@github.com:iogf/lax.git lax-code
# Push lax.
cd ~/projects/lax-code
git status
git add *
git commit -a
git push
##############################################################################
# Install lax.
cd ~/projects/lax-code
sudo bash -i
python setup.py install
rm -fr build
exit
##############################################################################
# Create, development, branch, lax.
cd /home/tau/projects/lax-code/
git branch -a
git checkout -b development
git push --set-upstream origin development
##############################################################################
# Merge development into master.
cd /home/tau/projects/lax-code/
git checkout master
git merge development
git push
git checkout development
##############################################################################
cd ~/projects/lax-code
python setup.py sdist register upload
rm -fr dist