File: githubAccess_public.html

package info (click to toggle)
liggghts 3.0.3%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 106,076 kB
  • ctags: 34,406
  • sloc: cpp: 363,723; python: 21,138; ansic: 9,146; perl: 3,687; sh: 2,841; fortran: 2,802; xml: 788; makefile: 485; objc: 238; lisp: 169; f90: 145; csh: 16; awk: 14
file content (55 lines) | stat: -rw-r--r-- 1,526 bytes parent folder | download | duplicates (2)
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
<HTML>
<CENTER><A HREF = "http://www.cfdem.com">CFDEMproject WWW Site</A> - <A HREF = "CFDEMcoupling_Manual.html#comm">CFDEM Commands</A> 
</CENTER>








<HR>

<H3>githubAccess_public 
</H3>
<HR>

<P><B>Description:</B>
</P>
<P>This routine describes how to setup a github account and pull repositories of the CFDEMproject.
</P>
<P><B>Procedure:</B>
</P>
<UL><LI>Basically the following steps have to be performed:
<I>git clone</I> the desired repository 

<LI>update your repositories by <I>git pull</I> 


</UL>
<P><B><I>git clone</I> the desired repository:</B>
</P>
<P>To clone the public LIGGGHTS repository, open a terminal and execute:
</P>
<PRE>git clone git@github.com:CFDEMproject/LIGGGHTS-PUBLIC.git 
</PRE>
<P>Note: the git protocol will not work if your computer is behind a firewall which blocks the relevant TCP port, you can use alternatively:
</P>
<PRE>git clone https://github.com/CFDEMproject/LIGGGHTS-PUBLIC.git 
</PRE>
<P>To clone the public CFDEMcoupling repository, open a terminal and execute:
</P>
<PRE>git clone git@github.com:CFDEMproject/CFDEMcoupling-PUBLIC.git 
</PRE>
<P>Note: the git protocol will not work if your computer is behind a firewall which blocks the relevant TCP port, you can use alternatively:
</P>
<PRE>git clone https://github.com/CFDEMproject/CFDEMcoupling-PUBLIC.git 
</PRE>
<P><B>Update your repositories by <I>git pull</I>:</B>
</P>
<P>To get the latest version, open a terminal, go to the location of your local installation and type:
</P>
<PRE>git pull 
</PRE>
</HTML>