Document how to setup git correctly
This commit is contained in:
parent
e440eb6dc8
commit
19e0de9049
|
@ -7,6 +7,13 @@ Download the Source Code
|
||||||
git clone https://stash.freeswitch.org/scm/fs/freeswitch.git
|
git clone https://stash.freeswitch.org/scm/fs/freeswitch.git
|
||||||
cd freeswitch
|
cd freeswitch
|
||||||
|
|
||||||
|
Ensure Git is Setup
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
# tell git your full name and email address; make sure to use your
|
||||||
|
# real name and not a username
|
||||||
|
./scripts/setup-git.sh
|
||||||
|
|
||||||
Create Your Patch
|
Create Your Patch
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
@ -24,6 +31,9 @@ Create Your Patch
|
||||||
# logically separate change
|
# logically separate change
|
||||||
#while true; do emacs .; git commit -va; done
|
#while true; do emacs .; git commit -va; done
|
||||||
|
|
||||||
|
# review changes; ensure your author name is correct
|
||||||
|
git log -p
|
||||||
|
|
||||||
# create patch files
|
# create patch files
|
||||||
git format-patch origin/master..HEAD
|
git format-patch origin/master..HEAD
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue