done with steps :
*# fork repository*
mkdir ~/git/
cd ~/git/
git clone --recursive https://github.com/sugizo/web2py.git
cd web2py/

*# List the current configured remote repository for your fork*
git remote -v

*# Specify a new remote upstream repository that will be synced with the 
fork*
git remote add upstream https://github.com/web2py/web2py.git

*# Verify the new upstream repository you've specified for your fork*
git remote -v

*# Fetch the branches and their respective commits from the upstream 
repository*
git fetch upstream

*# Check out your fork's local master branch*
git checkout master

*# Merge the changes from upstream/master into your local master branch*
git merge upstream/master

*# Create the branch on your local machine*
git checkout -b fix_memcache_appadmin

*# Change working branch*
git checkout fix_memcache_appadmin

*# add the code in gluon/contrib/memcache/__init__.py*
class MemcacheClientObj(Client):
    def initialize(self):
        pass

*# commit the change with a clear message*
git commit -am "appadmin can use ccache with cache.ram = cache.disk = 
cache.memcache"

*# push only the new branch*
git push origin fix_memcache_appadmin

thanks and best regards,
stifan

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to