Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=93d15238f7ec5f3cb72f91e6db5b390a1c2b778a

commit 93d15238f7ec5f3cb72f91e6db5b390a1c2b778a
Author: Miklos Vajna <[EMAIL PROTECTED]>
Date:   Sun Jan 20 00:24:39 2008 +0100

docs/getting-involved: update
mention our git:// server, mention git rebase and git add -p
thanks for notz from #frugalware for pointing out the git:// server was not
mentioned :)

diff --git a/docs/getting-involved.txt b/docs/getting-involved.txt
index 1131d51..979a8c9 100644
--- a/docs/getting-involved.txt
+++ b/docs/getting-involved.txt
@@ -68,7 +68,7 @@ $ cd ~/git

Now clone the repo with git:
--------------------------------------------------------------------------------------------------------------
-$ git clone 
http://ftp5.frugalware.org/packages/frugalware/pub/frugalware/frugalware-current
 current
+$ git clone git://git.frugalware.org/pub/frugalware/frugalware-current current
$ cd current
--------------------------------------------------------------------------------------------------------------

@@ -84,8 +84,8 @@ NOTE: Most of our programs need the translations repo to 
compile)
---------------------------------------------------------------------
$ mkdir -p ~/git
$ cd ~/git
-$ git clone http://git.frugalware.org/repos/translations (optional)
-$ git clone http://git.frugalware.org/repos/pacman-g2
+$ git clone git://git.frugalware.org/pub/other/translations (optional)
+$ git clone git://git.frugalware.org/pub/other/pacman-g2/pacman-g2
$ cd pacman-g2
---------------------------------------------------------------------

@@ -113,10 +113,10 @@ It is very handy when you have lot of uncommitted changes 
in your repo.
If you satisfied with the changes run

--------------
-$ git commit
+$ git commit -a
--------------

-to commit the changes.
+to commit all your changes.

If you want to cherry-pick hunks from your changes:

@@ -127,7 +127,7 @@ $ dg record
or using native git commands:

----
-$ git commit --interactive
+$ git add -p; git commit
----

Without committing your changes you can not send nor
@@ -251,7 +251,8 @@ You should always review what you would push before you 
perform the action:

----
$ git fetch
-$ git log origin/master..master --no-merges
+$ git rebase origin/master
+$ git log origin/master..master
----

Then you can use
_______________________________________________
Frugalware-git mailing list
[email protected]
http://frugalware.org/mailman/listinfo/frugalware-git

Reply via email to