First commit the changes from your local branch
git add .
git commit -m 'fix(about): something'
Switch to the branch with which you will do the rebase
git checkout {other-branch}
git pull origin {other-branch}
First commit the changes from your local branch
git add .
git commit -m 'fix(about): something'
Switch to the branch with which you will do the rebase
git checkout {other-branch}
git pull origin {other-branch}
| html { | |
| background: url(images/bg.jpg) no-repeat center center fixed; | |
| -webkit-background-size: cover; | |
| -moz-background-size: cover; | |
| -o-background-size: cover; | |
| background-size: cover; | |
| filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.myBackground.jpg', sizingMethod='scale'); | |
| -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='myBackground.jpg', sizingMethod='scale')"; | |
| } | 
| $('*').each(function() { | |
| if ($(this).text() == "") { | |
| //Aquí Tu Código | |
| } | |
| }); | |
| /* devuelve True o False si el elemento esta vacío. */ | |
| var emptyTest = $('#myDiv').is(':empty'); | 
| #Instala django-disqus | |
| pip install django-disqus | |
| #ó descarga django-disqus.tar.gz de http://pypi.python.org/pypi/django-disqus/ | |
| #descomprímelo y córrelo con | |
| python setup.py install | |
| #Luego en setting.py agrega lo siguiente: | |
| INSTALLED_APPS = ( | |
| ... |