improved git howto for cin3
This commit is contained in:
parent
f834e5d168
commit
4580eb5634
1 changed files with 9 additions and 2 deletions
|
|
@ -927,7 +927,7 @@ For now I hope this approach suffices, maybe we need admin/git_hooks/$HOOKNAME.$
|
|||
→ see [[Interesting Branches|GitBranches]]
|
||||
</pre>
|
||||
</div>
|
||||
<div title="Howto download the cinelerra3 sources and deliver changes" modifier="SimAV" modified="200707161605" created="200707152057" changecount="6">
|
||||
<div title="Howto download the cinelerra3 sources and deliver changes" modifier="SimAV" modified="200707161757" created="200707152057" changecount="7">
|
||||
<pre>This part should explain what you have to do in order to download the sources of Cinelerra3 (cin3) from pipapo.org. It treats as well how to deliver improvements to cin3 using git. Git is a tool similar to cvs or svn.
|
||||
|
||||
The cin3 sources are stored in a git repository. Maybe you have never heard of git before, but i can allay your fears: using git isn't that complicated. To download cin3 the very first time you simply have to clone a git-repo from pipapo.org. To do so just type the following in a shell:
|
||||
|
|
@ -951,12 +951,19 @@ If everything went well your copy is now up to date. Pulling is faster than clon
|
|||
* Install git before calling git
|
||||
|
||||
Now you could compile the source code or improve Cinelerra3 or the documentation. After having done so (let's say you have written a patch) you can deliver your changes by:
|
||||
* at first setting your name and email
|
||||
* committing your changes
|
||||
* pushing your local git-repo to a public server
|
||||
|
||||
!!!Code
|
||||
//{{{
|
||||
git config --global user.name "YOUR REALNAME"
|
||||
git config --global user.email YOUR-E@MAIL.ADRESS
|
||||
git commit -m 'YOUR DESCRIPTION' -- FILE/TO/COMMIT
|
||||
git push git://git.pipapo.org/cinelerra3/mob
|
||||
//}}}
|
||||
|
||||
cinelerra3/mob is an anonymous account where everyone can commit changes. </pre>
|
||||
cinelerra3/mob is an anonymous account at pipapo.org where everyone can commit changes. </pre>
|
||||
</div>
|
||||
<div title="InlineJavaScript" modifier="Jeremy" created="200603090618" tags="systemConfig" server.type="file" server.host="file:///home/ct/.homepage/home.html" server.page.revision="200603090618">
|
||||
<pre>/***
|
||||
|
|
|
|||
Loading…
Reference in a new issue