diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2010-08-10 23:45:27 -0700 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-11 14:09:37 +0200 |
commit | 96693637403f59cd23af57f123f3543ba06dee0a (patch) | |
tree | b0349396636c81d96ce04effc6026f39e06a2735 | |
parent | 775965de859c6df5d5652f3f58edfd68803f0813 (diff) | |
download | busybox-w32-96693637403f59cd23af57f123f3543ba06dee0a.tar.gz busybox-w32-96693637403f59cd23af57f123f3543ba06dee0a.tar.bz2 busybox-w32-96693637403f59cd23af57f123f3543ba06dee0a.zip |
Remove some more mentions of Subversion
Signed-off-by: Dan Fandrich <dan@coneharvesters.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | docs/new-applet-HOWTO.txt | 11 |
2 files changed, 7 insertions, 6 deletions
@@ -80,7 +80,7 @@ Downloading the current source code: | |||
80 | The developers also have a bug and patch tracking system | 80 | The developers also have a bug and patch tracking system |
81 | (https://bugs.busybox.net) although posting a bug/patch to the mailing list | 81 | (https://bugs.busybox.net) although posting a bug/patch to the mailing list |
82 | is generally a faster way of getting it fixed, and the complete archive of | 82 | is generally a faster way of getting it fixed, and the complete archive of |
83 | what happened is the subversion changelog. | 83 | what happened is the git changelog. |
84 | 84 | ||
85 | Note: if you want to compile busybox in a busybox environment you must | 85 | Note: if you want to compile busybox in a busybox environment you must |
86 | select CONFIG_DESKTOP. | 86 | select CONFIG_DESKTOP. |
diff --git a/docs/new-applet-HOWTO.txt b/docs/new-applet-HOWTO.txt index 0646e728e..7fbd62ed1 100644 --- a/docs/new-applet-HOWTO.txt +++ b/docs/new-applet-HOWTO.txt | |||
@@ -8,7 +8,7 @@ Matt Kraai - initial writeup | |||
8 | Mark Whitley - the remix | 8 | Mark Whitley - the remix |
9 | Thomas Lundquist - Trying to keep it updated. | 9 | Thomas Lundquist - Trying to keep it updated. |
10 | 10 | ||
11 | When doing this you should consider using the latest svn trunk. | 11 | When doing this you should consider using the latest git HEAD. |
12 | This is a good thing if you plan to getting it committed into mainline. | 12 | This is a good thing if you plan to getting it committed into mainline. |
13 | 13 | ||
14 | Initial Write | 14 | Initial Write |
@@ -169,12 +169,13 @@ Be sure to read the top of applets.h before adding your applet. | |||
169 | The Grand Announcement | 169 | The Grand Announcement |
170 | ---------------------- | 170 | ---------------------- |
171 | 171 | ||
172 | Then create a diff by adding the new files with svn (remember your libbb files) | 172 | Then create a diff by adding the new files to git (remember your libbb files) |
173 | svn add <where you put it>/mu.c | 173 | git add <where you put it>/mu.c |
174 | eventually also: | 174 | eventually also: |
175 | svn add libbb/function.c | 175 | git add libbb/function.c |
176 | then | 176 | then |
177 | svn diff | 177 | git commit |
178 | git format-patch HEAD^ | ||
178 | and send it to the mailing list: | 179 | and send it to the mailing list: |
179 | busybox@busybox.net | 180 | busybox@busybox.net |
180 | http://busybox.net/mailman/listinfo/busybox | 181 | http://busybox.net/mailman/listinfo/busybox |