Metadata-Version: 2.4
Name: chibi_git
Version: 0.9.0
Summary: wrapper to use git in python
Home-page: https://github.com/dem4ply/chibi_git
Author: dem4ply
Author-email: dem4ply@gmail.com
License: WTFPL
Keywords: chibi_git
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: Public Domain
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: chibi>=0.14.0
Requires-Dist: chibi_atlas>=1.1.0
Requires-Dist: chibi_command>=1.1.2
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

=========
Chibi_git
=========


.. image:: https://img.shields.io/pypi/v/chibi_git.svg
        :target: https://pypi.python.org/pypi/chibi_git

.. image:: https://readthedocs.org/projects/chibi-git/badge/?version=latest
        :target: https://chibi-git.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status


wrapper to use git in python

Ejemplos de uso
---------------

.. code-block:: python

	from chibi_git import Git


	repo = Git( '/algun/directorio' )
	for file in repo.status.modified:
		file.add()
	repo.commit( 'algun mensaje' )


* Free software: WTFPL
* Documentation: https://chibi-git.readthedocs.io.


Features
--------

* TODO


=======
History
=======

0.9.0 ( 2025-05-29 )
--------------------

* parametro para agregar mensajes en los tags
  Git( '.' ).tags.create( 'new_branch', message="algun mensaje en el tag" )

0.8.1 ( 2025-05-22 )
--------------------

* correcion se agrego el path del src en pull

0.8.0 ( 2025-05-22 )
--------------------

* funcionalidad para hacer pull Git( '.' ).pull()

0.7.0 ( 2025-05-21 )
--------------------

* funcionalidad para hacer fetch Git( '.' ).fetch()

0.6.0 ( 2025-05-21 )
--------------------

* funcionalidad para cambiar de ramas locales y remotas Git( '.' ).branches[ 'master' ].checkout()

0.5.0 ( 2025-05-17 )
--------------------

* funcionalidad para crear ramas Git( '.' ).branches.create( 'new_branch' )
* funcionalidad para crear tags Git( '.' ).tags.create( 'new_branch' )

0.4.1 ( 2025-05-16 )
--------------------

* comando push no es captivo

0.4.0 ( 2025-05-16 )
--------------------

* funcion para leer las ramas de los repos Git( '.' ).branches

0.3.0 ( 2025-05-16 )
--------------------

* funcion para clonar repos Git.clone( url )

0.2.0 (2025-03-03)
------------------

* se cambio el uso de status ahora usa direciones absolutas y tiene add

0.1.0 (2025-03-01)
------------------

* funciones agregar remote

0.0.1 (2025-01-22)
------------------

* First release on PyPI.
