Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ceeb7c175d0d59368d67f85724e4236629cdf4b6 (plain)
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
Clone of https://git01.codeplex.com/aspnetwebstack.git
======================================================

This is a Mono copy of the Microsoft ASP.NET Web Stack (MVC, Razor etc) in order to
make maintenance of the Mono version of those libraries easier.

Mono git submodules maintenance
==============================

Please read http://mono-project.com/Git_Submodules_Maintenance

Maintenance and development
===========================

These instructions are for developers working on code in this repository. End users do not need to be
concerned with the procedures described below.

First clone the repository (do not do any development in the submodule directory in mono source tree).

In order to modify the upstream source code you need a way to interact with the upstream repository in order
to fetch updates, cherry pick or merge them etc. To make it possible you need to add the upstream remote to
your clone of the repository:

    git remote add upstream https://git01.codeplex.com/aspnetwebstack.git

When there are upstream changes you're interested in merging, fetch them but do not apply them to the tree:

    git fetch upstream master

You can replace 'master' with name of the remote branch you need to update from.

To merge all upstream updates into master, do:

    git checkout master
    git merge upstream/master

followed by

    git push origin/master

After that is done and you're ready to make the changes visible to mono, go to your mono repository clone,
make sure the submodules are initialized and up to date:

    git submodule update --recursive --init

then go to he external/aspnetwebstack directory and get the changes:

    git pull

Then go back to the top of your copy of mono repository and update the submodule reference:

    git add external/aspnetwebstack
    git push