-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREAME
More file actions
31 lines (23 loc) · 951 Bytes
/
REAME
File metadata and controls
31 lines (23 loc) · 951 Bytes
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
# Propal ANR CoSys 2011
This files are LaTeX files for the CoSys proposal answer to the
[ANR INS](http://www.agence-nationale-recherche.fr/programmes-de-recherche/appel-detail/ingenierie-numerique-et-securite-ins-2011/) call.
Collaborative trunk nitiated by [JMB](mailto:bruel@irit.fr).
# Usefull [git](http://git-scm.com/) command:
-- start by copying a local copy of the repository
git clone git@github.com:jmbruel/CoSys.git
-- check result
git status
# setup your git info if not done already
git config --global user.name "Your Name"
git config --global user.email youremail@example.com
# create a branch for your own dev
git checkout -b mybranch
# check
git branch
# work then
# commit your work locally
git commit -a -m "A message to indicate what you've done"
# merge with the main trunk if you believe it should
git checkout master (to check conflict)
git merge mybranch (if none)
git push (the distant repository is now up to date)