-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
46 lines (27 loc) · 1.13 KB
/
README
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
=========== Structure ===========
basic.v contains common definitions, all other *.v files rely on it and
do not have interdependencies (at least for now).
All proved statements are summarized in to_prove.tex manually.
=========== Instructions =============
====== GIT ======
== Setting up ==
Register on github and send me ([email protected]) your account.
Install msysgit (if you are on windows)
Generate keys (http://help.github.com/msysgit-key-setup/)
Upload your public key on github account settings page
Line endings:
for linux git config --global core.autocrlf input
for windows git config --global core.autocrlf true
git config --global user.name "Your Name"
git config --global user.email "address you used to register on github"
git clone [email protected]:Vlad-Shcherbina/TheoryOfRefinement.git
== Git working cycle ==
git pull
[hack, hack, hack]
git add <files you changed>
gitk (to ensure you added to index all changes you indended to add)
// also, you can use 'git gui' command to do adds and commits
git commit (or git gui for better and precise commit management)
git pull
[resolve conflicts if any]
git push