mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-03 09:21:29 +00:00
Enhanced the self-documentation in git setup.
This commit is contained in:
parent
3e3b80c19d
commit
0780e04511
@ -47,11 +47,21 @@ cat 1>&2 <<EOF
|
|||||||
This does NOT rewrite history on the remote FS repo, but it does
|
This does NOT rewrite history on the remote FS repo, but it does
|
||||||
change the commit hashes in your local tree.
|
change the commit hashes in your local tree.
|
||||||
|
|
||||||
|
By default, 'git pull' is equivalent to running:
|
||||||
|
|
||||||
|
git fetch && git merge origin/master
|
||||||
|
|
||||||
|
What we've done here is change things such that 'git pull' is now
|
||||||
|
equivalent to:
|
||||||
|
|
||||||
|
git fetch && git rebase origin/master
|
||||||
|
|
||||||
If you really want to merge rather than rebasing, run:
|
If you really want to merge rather than rebasing, run:
|
||||||
|
|
||||||
git merge <commit>
|
git merge <commit>
|
||||||
|
|
||||||
See 'man git-config' for more information.
|
See 'man git-config' for more information. Also see the man pages
|
||||||
|
for git-pull, git-fetch, git-merge, and git-rebase.
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
[ -n "$name" ] \
|
[ -n "$name" ] \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user