Codebase list mozc / cbccaa6
Developers should check out only master branch. In Mozc repository, it's only master branch where we basically do not change existing commit histories and commit hashes unless we exceptionally have to do that. Since any other branches are basically used for development purpose, it is not recommended to check them out unless needed. Hence this CL updates documents and Dockerfile for developers to not check them out accidentally. Yohei Yukawa 8 years ago
5 changed file(s) with 8 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
1919 ```
2020 mkdir -p ~/work
2121 cd ~/work
22 git clone https://github.com/google/mozc.git --recursive
22 git clone https://github.com/google/mozc.git -b master --single-branch --recursive
2323 ```
2424
2525 # Compilation
3434 ```
3535 mkdir c:\work
3636 cd c:\work
37 git clone https://github.com/google/mozc.git --recursive
37 git clone https://github.com/google/mozc.git -b master --single-branch --recursive
3838 ```
3939
4040 # Compilation
55 You can check out Mozc [2.17.2287.102](https://github.com/google/mozc/commit/ab4569e73bca8d2375262d243f362c7b848646da) as follows.
66
77 ```
8 git clone https://github.com/google/mozc.git
8 git clone https://github.com/google/mozc.git -b master --single-branch
99 cd mozc
1010 git checkout ab4569e73bca8d2375262d243f362c7b848646da
1111 git submodule update --init --recursive
3030 You can check out Mozc [2.17.2284.102](https://github.com/google/mozc/commit/be24638ab360c39995ab2c10e34ab9b269e39dac) as follows.
3131
3232 ```
33 git clone https://github.com/google/mozc.git
33 git clone https://github.com/google/mozc.git -b master --single-branch
3434 cd mozc
3535 git checkout be24638ab360c39995ab2c10e34ab9b269e39dac
3636 git submodule update --init --recursive
5858 You can check out Mozc [2.17.2240.102](https://github.com/google/mozc/commit/95de40fa884d693172605e7283ec82233a908b29) as follows.
5959
6060 ```
61 git clone https://github.com/google/mozc.git
61 git clone https://github.com/google/mozc.git -b master --single-branch
6262 cd mozc
6363 git checkout 95de40fa884d693172605e7283ec82233a908b29
6464 git submodule update --init --recursive
100100 You can check out Mozc [2.17.2123.102](https://github.com/google/mozc/commit/e398317a086a78c0cf0004505eb8f56586e925b2) as follows.
101101
102102 ```
103 git clone https://github.com/google/mozc.git
103 git clone https://github.com/google/mozc.git -b master --single-branch
104104 cd mozc
105105 git checkout e398317a086a78c0cf0004505eb8f56586e925b2
106106 git submodule update --init --recursive
5757 ENV PATH $PATH:/home/mozc_builder/work/depot_tools
5858
5959 # check out Mozc source with submodules
60 RUN git clone https://github.com/google/mozc.git --recursive
60 RUN git clone https://github.com/google/mozc.git -b master --single-branch --recursive
6161
6262 WORKDIR /home/mozc_builder/work/mozc/src
6363 ENTRYPOINT bash
7373 ENV PATH $PATH:/home/mozc_builder/work/depot_tools
7474
7575 # check out Mozc source with submodules
76 RUN git clone https://github.com/google/mozc.git --recursive
76 RUN git clone https://github.com/google/mozc.git -b master --single-branch --recursive
7777
7878 WORKDIR /home/mozc_builder/work/mozc/src
7979 ENTRYPOINT bash