-
Notifications
You must be signed in to change notification settings - Fork 21
/
escs.sh
90 lines (84 loc) · 2.76 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
##############################################################################
# Clone crocs.
cd ~/projects
git clone git@github.com:iogf/crocs.git crocs-code
##############################################################################
# Push code
cd ~/projects/crocs-code
git status
git add *
git commit -a
git push
##############################################################################
# Create the development branch.
cd ~/projects/crocs-code
git branch -a
git checkout -b development
git push --set-upstream origin development
##############################################################################
# Merge master into development crocs.
cd ~/projects/crocs-code
git checkout development
git merge master
git push
##############################################################################
# Merge development into master crocs.
cd ~/projects/crocs-code
git checkout master
git merge development
git push
git checkout development
##############################################################################
# check diffs, crocs.
cd ~/projects/crocs-code
git diff
##############################################################################
# delete the development branch, crocs.
git branch -d development
git push origin :development
git fetch -p
##############################################################################
# undo, changes, crocs, github.
cd ~/projects/crocs-code
git checkout *
##############################################################################
# install, crocs.
sudo bash -i
cd /home/tau/projects/crocs-code
python setup.py install
rm -fr build
exit
##############################################################################
# build, crocs, package, disutils.
cd /home/tau/projects/crocs-code
python2.6 setup.py sdist
rm -fr dist
rm MANIFEST
##############################################################################
# Upload to pypi/pip.
cd ~/projects/crocs-code
python setup.py sdist register upload
rm -fr dist
##############################################################################
# check patch-1
cd /home/tau/projects/crocs-code/
git checkout -b cclauss-patch-1 master
git pull https://github.com/cclauss/crocs.git patch-1
# Merge pull request.
git checkout development
git merge --no-ff cclauss-patch-1
git push origin development
##############################################################################
# create development branch for wiki.
cd /home/tau/projects/crocs.wiki-code/
git branch -a
git checkout -b development
git push --set-upstream origin development
##############################################################################
# push wiki docs.
cd /home/tau/projects/crocs.wiki-code/
git status
git add *
git commit -a
git push
##############################################################################