-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnote_docker
66 lines (28 loc) · 1.38 KB
/
note_docker
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
#this doc tells everyting about the docker emodis_ndvi_python
#we setup a git for this docker at https://github.com/gina-alaska/emodis_ndvi_python-docker
1.you can build the docker with buid
./build
2. you can start the docker in interactive mode
./start_docker_interactive
3. you can verify the emodis_ndvi_algorithm in the docker emodis_ndvi_pyalgorithm in the docker emodis_ndvi_python
#2017/10/10, learn git command.
master local master remote
$$$$ The develop cycle with the help of git repository $$$$
git clone (if local master not exist ) or git pull
you can create a new branceh, work on the branch,
after you have done, you can git add, git commit, and git push.
new branch will be created in remote repository.
in the github, you can send a pull request to your collaborators. ask himto review and merge the pull regest. the the modification of your new branch will be merged into master branch. you can delete your local branch.
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
git push --set-upstream origin justtest
git checkout master
#delete a branch
git branch -d justest
#go into master, create a new branch, this branch include master and new branch
git checkout -b justtest1
#push a new branch
git push --set-upstream origin justtest1
#delete a dir on github
git rm -r --cached test
git commit -am "delete a dir"
git push